mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
70 lines
2.0 KiB
HTML
70 lines
2.0 KiB
HTML
|
|
<!-- Text -->
|
|
<ion-tabs no-navbar>
|
|
<ion-tab tabTitle="Recents"></ion-tab>
|
|
<ion-tab tabTitle="Favorites"></ion-tab>
|
|
<ion-tab tabTitle="Settings"></ion-tab>
|
|
</ion-tabs>
|
|
|
|
|
|
<!-- Icons -->
|
|
<ion-tabs no-navbar>
|
|
<ion-tab tabIcon="call"></ion-tab>
|
|
<ion-tab tabIcon="heart"></ion-tab>
|
|
<ion-tab tabIcon="settings"></ion-tab>
|
|
</ion-tabs>
|
|
|
|
|
|
<!-- Icons on top of text -->
|
|
<ion-tabs no-navbar>
|
|
<ion-tab tabTitle="Location" tabIcon="navigate"></ion-tab>
|
|
<ion-tab tabTitle="Favorites" tabIcon="star"></ion-tab>
|
|
<ion-tab tabTitle="Radio" tabIcon="musical-notes"></ion-tab>
|
|
</ion-tabs>
|
|
|
|
|
|
<!-- Icons below text -->
|
|
<ion-tabs tabbarIcons="bottom" no-navbar>
|
|
<ion-tab tabTitle="Recents" tabIcon="call"></ion-tab>
|
|
<ion-tab tabTitle="Favorites" tabIcon="heart"></ion-tab>
|
|
<ion-tab tabTitle="Settings" tabIcon="settings"></ion-tab>
|
|
</ion-tabs>
|
|
|
|
|
|
<!-- Icons right of text -->
|
|
<ion-tabs tabbarIcons="right" no-navbar>
|
|
<ion-tab tabTitle="Recents" tabIcon="call"></ion-tab>
|
|
<ion-tab tabTitle="Favorites" tabIcon="heart"></ion-tab>
|
|
<ion-tab tabTitle="Settings" tabIcon="settings"></ion-tab>
|
|
</ion-tabs>
|
|
|
|
|
|
<!-- Icons left of text -->
|
|
<ion-tabs tabbarIcons="left" no-navbar>
|
|
<ion-tab tabTitle="Recents" tabIcon="call"></ion-tab>
|
|
<ion-tab tabTitle="Favorites" tabIcon="heart"></ion-tab>
|
|
<ion-tab tabTitle="Settings" tabIcon="settings"></ion-tab>
|
|
</ion-tabs>
|
|
|
|
<!-- No icons -->
|
|
<ion-tabs tabbarIcons="hide" no-navbar>
|
|
<ion-tab tabTitle="Recents" tabIcon="call"></ion-tab>
|
|
<ion-tab tabTitle="Favorites" tabIcon="heart"></ion-tab>
|
|
<ion-tab tabTitle="Settings" tabIcon="settings"></ion-tab>
|
|
</ion-tabs>
|
|
|
|
<!-- No overflow text -->
|
|
<ion-tabs no-navbar>
|
|
<ion-tab tabTitle="Indiana Jones and the Raiders of the Lost Ark"></ion-tab>
|
|
<ion-tab tabTitle="Indiana Jones and the Temple of Doom"></ion-tab>
|
|
<ion-tab tabTitle="Indiana Jones and the Last Crusade"></ion-tab>
|
|
</ion-tabs>
|
|
|
|
|
|
<!-- primary color tabbar -->
|
|
<ion-tabs no-navbar tabbar-style="primary">
|
|
<ion-tab tabIcon="call"></ion-tab>
|
|
<ion-tab tabIcon="heart"></ion-tab>
|
|
<ion-tab tabIcon="settings"></ion-tab>
|
|
</ion-tabs>
|