I would like to implement a tab bar in the notepad of the monaca sample app (there are three tabs below, the top screen of the notepad app is also displayed in the tab switching destination, and there are three notepad in one app).
I'm a beginner and I've looked it up, but I can't display the tab bar and notepad on the same screen.
Thank you for your reply.
monaca jquery-ui jquery-mobile
In TOP Page
, add the navigation bar as a footer after </section>
.
<!--TOP Page-->
<div data-role="page"id="TopPage">
<header data-role="header" data-position="fixed" data-theme="c">
<h1>Monaca Memo</h1>
<a href="#AddPage" data-icon="plus" class="ui-btn-right">Add</a>
</header>
<section data-role="content">
<ulid="TopListView" data-role="listview" data-collapsed-icon="arrow-r" data-expanded-icon="arrow-d" data-split-icon="delete">
</ul>
</section>
<!--- Add -->
<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#"data-icon="home" class="ui-btn-active">Home>/a><li>;
<li><a href="#"data-icon="star">Favorite</a></li>
<li><a href="#"data-icon="gear">Settings</a></li>
</ul>
</div>
</div>
</div>
© 2024 OneMinuteCode. All rights reserved.