Files
2015-12-10 22:52:55 -06:00

60 lines
1.2 KiB
HTML

<ion-toolbar><ion-title>Show/Hide When</ion-title></ion-toolbar>
<ion-content padding>
<p showWhen="ios" style="background:blue; color:white">
showWhen="ios"
</p>
<p showWhen="android" style="background:green; color:white">
showWhen="android"
</p>
<p showWhen="android,ios" style="background:yellow;">
showWhen="android,ios"
</p>
<p showWhen="core" style="background:#ddd;">
showWhen="core"
</p>
<p showWhen="mobile" style="background:orange;">
showWhen="mobile"
</p>
<p showWhen="phablet" style="background:red;">
showWhen="phablet"
</p>
<p showWhen="tablet" style="background:black;color:white">
showWhen="tablet"
</p>
<p showWhen="iphone" style="background:purple; color:white;">
showWhen="iphone"
</p>
<p showWhen="landscape" style="background:pink;">
showWhen="landscape"
</p>
<p showWhen="portrait" style="background:maroon; color:white;">
showWhen="portrait"
</p>
<p hideWhen="ios" style="background:blue; color:white">
hideWhen="ios"
</p>
<p hideWhen="android" style="background:green; color:white">
hideWhen="android"
</p>
<p hideWhen="android,ios" style="background:yellow;">
hideWhen="android,ios"
</p>
</ion-content>