jQueryMobileでナビゲーションバーを実装するサンプルです。
サンプルソース
例)ナビゲーションバーのサンプル
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>ナビゲーションバーサンプル</title> <link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script> <script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> </head> <body> <div data-role="page"> <div data-role="header" data-theme="b" data-position="fixed"> <h1>ヘッダー</h1> </div> <div role="main" class="ui-content" style="height:1000px;"> 内容 </div> <div data-role="footer" data-theme="b" data-position="fixed"> <div data-role="navbar" data-iconpos="top"> <ul> <li><a href="#" data-icon="home" class="ui-btn-active">ホーム</a></li> <li><a href="#" data-icon="info">情報</a></li> <li><a href="#" data-icon="gear">設定</a></li> </ul> </div> </div> </div> </body> </html> |
解説
- jQueryMobileを使うには、jQueryもインポートする必要があります。
- jQueryはバージョン3系では動きません。