离子:视图 - 副标题

时间:2015-01-03 15:15:41

标签: angularjs ionic-framework ionic

在我的角度离子应用程序中,我想在视图标题下面添加一个副标题(类似于'字母')。这是可能的,还是在网上有任何解决方法?

enter image description here

现在,我的模板如下所示: (我尝试在view-title旁边添加view-subtitle =“test”,但到目前为止没有运气)

<ion-view view-title="Problems">
  <ion-content>
  </ion-content>
</ion-view>

提前致谢。

2 个答案:

答案 0 :(得分:0)

<ion-view title="<div class='main-title' style='line-height: 1.6;'>Main Title</div><div class='sub-title' style='line-height: .6;font-size: 12px;color: #333;'>Sub Title</div>">

<ion-content>
...
</ion-content>

</ion-view>

Output Image snap

答案 1 :(得分:-1)

有很多方法可以自定义标题。使用Ionic的CSS Sub Header组件,也可以在原始标题栏下方放置辅助标题栏,这样可以实现非常相似的外观。 http://ionicframework.com/docs/components/#subheader

  <ion-header-bar class="bar-dark" align-title="center">
    <button class="button button-icon" ng-click="toggleCompanies()">
      <i class="icon ion-navicon"></i>
    </button>
    <h1 class="title large">Employees</h1>
  </ion-header-bar>
  <ion-header-bar class="bar-dark bar-subheader">
    <div class="small">Alphabetic</div>
  </ion-header-bar>

应用一些CSS样式

.small {
  font-size: 14px;
  text-align: center;
}

enter image description here

此处的Plunker示例:http://embed.plnkr.co/LOxXsc/preview