仅从索引页面顶部删除导航器工具栏

时间:2014-05-20 13:18:15

标签: onsen-ui

如何在单页index.html上从顶部删除导航器工具栏,但我想在index.html上的某个按钮的ons.navigator.pushPage功能是否可能?

可以通过索引页面上的hide-toolbar =“true”实现并在第1页上返回false,但是在移到page1之后,我无法查看顶部标题上的左键和ons.navigator.popPage( )也没有按下我的按钮。

1 个答案:

答案 0 :(得分:2)

您可以通过

消失导航栏

的index.html

<ons-navigator page="foo.html" hide-toolbar=true></ons-navigator>

http://onsenui.io/guide/components.html#navigator

为了在next.html上显示ons-navigator html,请在foo,html中写下

foo.html

<div class="topcoat-navigation-bar">
  <div class="topcoat-navigation-bar__item center full">
    <h1 class="topcoat-navigation-bar__title">Navigation Bar</h1>
  </div>
</div>

<br><br><br>

<div class="topcoat-navigation-bar topcoat-navigation-bar--bottom">
  <div class="topcoat-navigation-bar__line-height" style="text-align:center">Bottom Toolbar</div>
</div>    

http://onsenui.io/themes/#navigation-bar