Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2012
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>My Page</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
  7. <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
  8. =<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
  9. </head>
  10. <body>
  11.  
  12. <div data-role="page" id="1">
  13.  
  14. <div data-role="header">
  15. <nav data-role="navbar" style="position:fixed;
  16. left:0px;
  17. bottom:0px;
  18. width:100%;
  19. ">
  20. <ul>
  21. <li><a href="#1" data-role = "button" data-transition="fade" rel="external" data-transition="pop" class="ui-btn-active">1 </a></li>
  22. <li><a href="#2" data-role = "button" data-transition="fade" rel="external" >2</a></li>
  23. <li><a href="#3" data-role = "button" data-transition="fade" rel="external">3</a></li>
  24. </ul>
  25. </nav>
  26.  
  27.  
  28. <div data-role="content">
  29. <p>1</p>
  30. </div><!-- /content -->
  31.  
  32. </div><!-- /page -->
  33. <div data-role="page" id="2">
  34.  
  35. <div data-role="header">
  36. <div data-role="header">
  37. <nav data-role="navbar" style="position:fixed;
  38. left:0px;
  39. bottom:0px;
  40. width:100%;
  41. ">
  42. <ul>
  43. <li><a href="#1" data-role = "button" data-transition="fade" rel="external" data-transition="pop" class="ui-btn-active">1 </a></li>
  44. <li><a href="#2" data-role = "button" data-transition="fade" rel="external" >2</a></li>
  45. <li><a href="#3" data-role = "button" data-transition="fade" rel="external">3</a></li>
  46. </ul>
  47. </nav>
  48. </div><!-- /header -->
  49.  
  50. <div data-role="content">
  51. <p>2</p>
  52. </div><!-- /content -->
  53.  
  54. </div><!-- /page -->
  55. <div data-role="page" id="3">
  56.  
  57. <div data-role="header">
  58. <div data-role="header">
  59. <nav data-role="navbar" style="position:fixed;
  60. left:0px;
  61. bottom:0px;
  62. width:100%;
  63. ">
  64. <ul>
  65. <li><a href="#1" data-role = "button" data-transition="fade" rel="external" data-transition="pop" class="ui-btn-active">1 </a></li>
  66. <li><a href="#2" data-role = "button" data-transition="fade" rel="external" >2</a></li>
  67. <li><a href="#3" data-role = "button" data-transition="fade" rel="external">3</a></li>
  68.  
  69. </ul>
  70. </nav>
  71. </div><!-- /header -->
  72.  
  73. <div data-role="content">
  74. <p>3</p>
  75. </div><!-- /content -->
  76.  
  77. </div><!-- /page -->
  78. </body>
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement