mobile.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>jQuery Book Browser</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link rel="stylesheet" href="booklist.css" type="text/css" />
  7. <link rel="stylesheet" href="jquery.mobile/jquery.mobile.css" type="text/css" />
  8. <script src="jquery.js"></script>
  9. <script src="jquery.mobile/jquery.mobile.js"></script>
  10. </head>
  11. <body>
  12. <div data-role="page" data-add-back-btn="true">
  13. <div data-role="header">
  14. <h1>Selected jQuery Books</h1>
  15. </div>
  16. <div data-role="content">
  17. <ul data-role="listview" data-inset="true" data-filter="true">
  18. <li><a href="#drupal-7">Drupal 7 Development by Example</a></li>
  19. <li><a href="#jq-game">jQuery Game Development Essentials</a></li>
  20. <li><a href="#jqmobile-cookbook">jQuery Mobile Cookbook</a></li>
  21. <li><a href="#jquery-designers">jQuery for Designers</a></li>
  22. <li><a href="#jquery-hotshot">jQuery Hotshot</a></li>
  23. <li><a href="#jqui-cookbook">jQuery UI Cookbook</a></li>
  24. <li><a href="#mobile-apps">Creating Mobile Apps with jQuery Mobile</a></li>
  25. <li><a href="wp-mobile-apps.html">WordPress Mobile Applications with PhoneGap</a></li>
  26. </ul>
  27. </div>
  28. </div>
  29. <div id="jq-game" data-role="page" data-add-back-btn="true">
  30. <div data-role="header">
  31. <h1>jQuery Game Development Essentials</h1>
  32. </div>
  33. <div data-role="content">
  34. <img src="images/jq-game.jpg" alt="jQuery Game Development Essentials" />
  35. <div class="title">jQuery Game Development Essentials</div>
  36. <div class="author">Salim Arsever</div>
  37. </div>
  38. </div>
  39. <div id="jqmobile-cookbook" data-role="page" data-add-back-btn="true">
  40. <div data-role="header">
  41. <h1>jQuery Mobile Cookbook</h1>
  42. </div>
  43. <div data-role="content">
  44. <img src="images/jqmobile-cookbook.jpg" alt="jQuery Mobile Cookbook" />
  45. <div class="title">jQuery Mobile Cookbook</div>
  46. <div class="author">Chetan K Jain</div>
  47. </div>
  48. </div>
  49. <div id="jquery-designers" data-role="page" data-add-back-btn="true">
  50. <div data-role="header">
  51. <h1>jQuery for Designers</h1>
  52. </div>
  53. <div data-role="content">
  54. <img src="images/jquery-designers.jpg" alt="jQuery for Designers" />
  55. <div class="title">jQuery for Designers</div>
  56. <div class="author">Natalie MacLees</div>
  57. </div>
  58. </div>
  59. <div id="jquery-hotshot" data-role="page" data-add-back-btn="true">
  60. <div data-role="header">
  61. <h1>jQuery Reference Guide</h1>
  62. </div>
  63. <div data-role="content">
  64. <img src="images/jquery-hotshot.jpg" alt="jQuery Hotshot" />
  65. <div class="title">jQuery Hotshot</div>
  66. <div class="author">Dan Wellman</div>
  67. </div>
  68. </div>
  69. <div id="jqui-cookbook" data-role="page" data-add-back-btn="true">
  70. <div data-role="header">
  71. <h1>jQuery UI Cookbook</h1>
  72. </div>
  73. <div data-role="content">
  74. <img src="images/jqui-cookbook.jpg" alt="jQuery UI Cookbook" />
  75. <div class="title">jQuery UI Cookbook</div>
  76. <div class="author">Adam Boduch</div>
  77. </div>
  78. </div>
  79. <div id="mobile-apps" data-role="page" data-add-back-btn="true">
  80. <div data-role="header">
  81. <h1>Creating Mobile Apps with jQuery Mobile</h1>
  82. </div>
  83. <div data-role="content">
  84. <img src="images/mobile-apps.jpg" alt="Creating Mobile Apps with jQuery Mobile" />
  85. <div class="title">Creating Mobile Apps with jQuery Mobile</div>
  86. <div class="author">Shane Gliser</div>
  87. </div>
  88. </div>
  89. <div id="drupal-7" data-role="page" data-add-back-btn="true">
  90. <div data-role="header">
  91. <h1>Drupal 7 Development by Example</h1>
  92. </div>
  93. <div data-role="content" class="book">
  94. <img src="images/drupal-7.jpg" alt="Drupal 7 Development by Example" />
  95. <div class="title">Drupal 7 Development by Example</div>
  96. <div class="author">Kurt Madel</div>
  97. </div>
  98. </div>
  99. </body>
  100. </html>