navigation.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Lungo Flexbox - SDK</title>
  6. <meta name="description" content="">
  7. <meta name="author" content="Javier Jiménez Villar (@soyjavi)">
  8. <meta name="HandheldFriendly" content="True">
  9. <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  10. <meta name="apple-mobile-web-app-capable" content="yes">
  11. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  12. <meta name="format-detection" content="telephone=no">
  13. <meta http-equiv="cleartype" content="on">
  14. <!-- Main Stylesheet -->
  15. <link rel="stylesheet" href="components/lungo.brownie/lungo.css">
  16. <link rel="stylesheet" href="components/lungo.brownie/lungo.theme.css">
  17. <link rel="stylesheet" href="components/lungo.icon/lungo.icon.css">
  18. </head>
  19. <body>
  20. <aside id="a">
  21. <header data-title="aside"></header>
  22. <article></article>
  23. </aside>
  24. <section id="zero" data-transition="slide" data-children="one" data-aside="a">
  25. <header data-title="Zero">
  26. <nav class="left">
  27. <button data-icon="list" data-view-aside="a"></button>
  28. </nav>
  29. <nav class="right">
  30. <button data-icon="arrow-right" data-view-section="two"></button>
  31. </nav>
  32. </header>
  33. <article id="zero-1"></article>
  34. </section>
  35. <section id="one" data-transition="slide" data-children="two" data-aside="a">
  36. <header data-title="One">
  37. <nav class="right">
  38. <button data-icon="arrow-right" data-view-section="two"></button>
  39. </nav>
  40. </header>
  41. <article id="one-1"></article>
  42. </section>
  43. <section id="two" data-transition="slide" data-children="three">
  44. <header data-back="home" data-title="Two">
  45. <nav class="right">
  46. <button data-icon="arrow-right" data-view-section="three"></button>
  47. </nav>
  48. </header>
  49. <article id="two-1"></article>
  50. </section>
  51. <section id="three" data-transition="slide" data-children="four">
  52. <header data-back="home" data-title="Three">
  53. <nav class="right">
  54. <button data-icon="arrow-down" data-view-section="four"></button>
  55. </nav>
  56. </header>
  57. <article id="three-1"></article>
  58. </section>
  59. <section id="four" data-transition="cover">
  60. <header data-back="home" data-title="Four"></header>
  61. <article id="four-1"></article>
  62. </section>
  63. <!-- Lungo dependencies -->
  64. <script src="components/quojs/quo.js"></script>
  65. <script src="components/lungo.brownie/lungo.debug.js"></script>
  66. <!-- LungoJS - Sandbox App -->
  67. <script>
  68. Lungo.init({
  69. name: 'Flexbox',
  70. version: '2.2',
  71. history: false
  72. });
  73. </script>
  74. </body>
  75. </html>