dialog-overlay.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 Framework - Dialog Example</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" data-overlay-theme="e">
  16. <div data-role="header" data-theme="b">
  17. <h1>Dialog</h1>
  18. </div>
  19. <div data-role="content" data-theme="d">
  20. <h1>Custom overlay</h1>
  21. <p>This dialog adds <code>data-overlay-theme="e"</code> to the page container to set the overlay swatch color.</p>
  22. <a href="docs-dialogs.html" data-role="button" data-rel="back" data-theme="a" data-inline="true">I like it</a>
  23. </div>
  24. <div data-role="footer" data-theme="c">
  25. <form style="padding-top:4px;">
  26. <input type="checkbox" name="checkbox-0" id="checkbox-0" class="custom" />
  27. <label for="checkbox-0">Don't show this message again </label>
  28. </form>
  29. </div>
  30. </div>
  31. </body>
  32. </html>