mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
60 lines
1.2 KiB
HTML
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>
|