本文為原創(chuàng)文章创坞,轉(zhuǎn)載請(qǐng)標(biāo)明出處
美工做了一套 icon婆廊,自然是要用的极颓。將 icon copy 到 assets
文件夾下湿痢。
例如 .icon-ios-home-custom
為 iOS icon 選中狀態(tài)霍骄;.icon-ios-home-custom-outline
為 iOS icon 未選中狀態(tài)台囱。
app.scss
:
.ion-ios-home-custom, .ion-ios-home-custom-outline {
width: 26px !important;
height: 26px !important;
min-width: 26px !important;
}
.ion-ios-home-custom {
content: url("../assets/icon/tabs/home-active.png");
}
.ion-ios-home-custom-outline {
content: url("../assets/icon/tabs/home-inactive.png");
}
tabs.html
:
<ion-tabs>
<ion-tab [root]="homeRoot" tabUrlPath="home" tabIcon="home-custom"></ion-tab>
</ion-tabs>
如有不當(dāng)之處,請(qǐng)予指正读整,謝謝~