2017-01-16 78 views

回答

10
<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; 
} 
0

这样简单。 使用:

<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>