0

単一ページ index.html のトップからナビゲーター ツールバーを削除するにはどうすればよいですか?

これは、インデックス ページで hide-toolbar="true" を実行し、 page1 で false に戻すことで実現できますが、page1 に移動した後、上部ヘッダーの左ボタンを表示できず、 ons.navigator.popPage() も表示されます私のボタンで動作していません。

4

1 に答える 1

2

でナビゲーションバーを消すことができます

index.html

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

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

そして、ons-navigator html を next.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

于 2014-06-03T08:47:57.767 に答える