mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
39 lines
883 B
HTML
39 lines
883 B
HTML
|
|
<ion-toolbar>
|
|
<ion-title>Default Buttons</ion-title>
|
|
</ion-toolbar>
|
|
|
|
<ion-content class="padding" style="text-align:center">
|
|
|
|
<p>
|
|
<button>D</button>
|
|
<button class="hover">D.hover</button>
|
|
<button class="activated">D.activated</button>
|
|
</p>
|
|
|
|
<p>
|
|
<button secondary>S</button>
|
|
<button secondary class="hover">S.hover</button>
|
|
<button secondary class="activated">S.activated</button>
|
|
</p>
|
|
|
|
<p>
|
|
<button danger>D</button>
|
|
<button danger class="hover">D.hover</button>
|
|
<button danger class="activated">D.activated</button>
|
|
</p>
|
|
|
|
<p>
|
|
<button light>L</button>
|
|
<button light class="hover">L.hover</button>
|
|
<button light class="activated">L.activated</button>
|
|
</p>
|
|
|
|
<p>
|
|
<button dark>D</button>
|
|
<button dark class="hover">D.hover</button>
|
|
<button dark class="activated">D.activated</button>
|
|
</p>
|
|
|
|
</ion-content>
|