Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JQuery Mobile Tabs

Does anyone know if JQuery Mobile does Tabs that stick to the bottom like the iphone native apps?

Thanks

like image 624
Satch3000 Avatar asked Apr 17 '11 08:04

Satch3000


2 Answers

Yes, they have tabs that stay fixed to the bottom:

http://jquerymobile.com/demos/1.0a4.1/#docs/toolbars/footer-persist-a.html

They behave slightly differently in that they disappear while scrolling and then reappear after the scrolling is finished.

like image 193
Spike Avatar answered Oct 27 '22 19:10

Spike


You can also watch the navbar section for more examples:

http://jquerymobile.com/test/docs/toolbars/docs-navbar.html

Example code:

<div data-role="navbar">
    <ul>
        <li><a href="#">One</a></li>
        <li><a href="#">Two</a></li>
        <li><a href="#">Three</a></li>
    </ul>
</div><!-- /navbar -->
like image 25
Torstein Avatar answered Oct 27 '22 21:10

Torstein