intro.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>jQuery Mobile Docs - Intro</title>
  7. <link rel="stylesheet" href="../../jquery.mobile-1.0.1.min.css" />
  8. <link rel="stylesheet" href="../_assets/css/jqm-docs.css"/>
  9. <script src="../../jquery.js"></script>
  10. <script src="../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script>
  11. <script src="../_assets/js/jqm-docs.js"></script>
  12. <script src="../../jquery.mobile-1.0.1.min.js"></script>
  13. </head>
  14. <body>
  15. <div data-role="page" class="type-interior">
  16. <div data-role="header" data-theme="f">
  17. <h1>Introduction</h1>
  18. <a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
  19. </div><!-- /header -->
  20. <div data-role="content">
  21. <div class="content-primary">
  22. <h2>jQuery Mobile Overview</h2>
  23. <p>jQuery’s mobile strategy can be summarized simply: A unified user interface system that works seamlessly across all popular mobile device platforms, built on the rock-solid jQuery and jQuery UI foundation. Focused on a lightweight codebase built on progressive enhancement with a flexible, easily themeable design.</p>
  24. <p>The critical difference with our approach is the <a href="platforms.html">wide variety of mobile platforms we’re targeting</a> with jQuery Mobile. We’ve been working hard at bringing jQuery support to all mobile browsers that are sufficiently-capable and have at least a nominal amount of market share. In this way, we’re treating mobile web browsers exactly how we treat desktop web browsers.</p>
  25. <p>To make this broad support possible, all pages in jQuery Mobile are built on a foundation of <strong>clean, semantic HTML</strong> to ensure compatibility with pretty much any web-enabled device. In devices that interpret CSS and JavaScript, jQuery Mobile applies <strong>progressive enhancement techniques</strong> to unobtrusively transform the semantic page into a rich, interactive experience that leverages the power of jQuery and CSS. <strong>Accessibility features</strong> such as WAI-ARIA are tightly integrated throughout the framework to provide support for screen readers and other assistive technologies.</p>
  26. </div><!--/content-primary -->
  27. <div class="content-secondary">
  28. <div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d">
  29. <h3>More in this section</h3>
  30. <ul data-role="listview" data-theme="c" data-dividertheme="d">
  31. <li data-role="list-divider">Overview</li>
  32. <li data-theme="a"><a href="../../docs/about/intro.html">Intro to jQuery Mobile</a></li>
  33. <li><a href="../../docs/about/getting-started.html">Quick start guide</a></li>
  34. <li><a href="../../docs/about/features.html">Features</a></li>
  35. <li><a href="../../docs/about/accessibility.html">Accessibility</a></li>
  36. <li><a href="../../docs/about/platforms.html">Supported platforms</a></li>
  37. </ul>
  38. </div>
  39. </div>
  40. </div><!-- /content -->
  41. <div data-role="footer" class="footer-docs" data-theme="c">
  42. <p>&copy; 2011-2012 The jQuery Project</p>
  43. </div>
  44. </div><!-- /page -->
  45. </body>
  46. </html>