4
如何在離子v2的標題中插入徽標?離子v2如何在標題中插入徽標
<ion-header>
<ion-navbar>
<ion-title></ion-title>
</ion-navbar>
</ion-header>
如何在離子v2的標題中插入徽標?離子v2如何在標題中插入徽標
<ion-header>
<ion-navbar>
<ion-title></ion-title>
</ion-navbar>
</ion-header>
<ion-header>
<ion-navbar>
<ion-title>
<img alt="logo" height="40" src="img/logo.png" >
</ion-title>
</ion-navbar>
</ion-header>
頁眉中離子有44px的高度。所以,您需要確保徽標尺寸小於此尺寸。
.title-image {
margin-top: 8px;
height: 27px;
}
這樣簡單。 使用:
<img alt="logo" height="40" src="img/logo.png" >
和:
<ion-header>
<ion-navbar>
<ion-title>
<img alt="logo" height="40" src="img/logo.png" >
</ion-title>
</ion-navbar>
</ion-header>