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