navigation.html 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 a"></header>
  22. <article></article>
  23. </aside>
  24. <aside id="b">
  25. <header data-title="aside b"></header>
  26. <article></article>
  27. </aside>
  28. <section id="zero" data-transition="slide" data-children="one" data-aside="a">
  29. <header data-title="Zero">
  30. <nav class="left">
  31. <button data-icon="list" data-view-aside="a"></button>
  32. </nav>
  33. <nav class="on-right">
  34. <button data-icon="arrow-right" data-view-section="one"></button>
  35. </nav>
  36. </header>
  37. <article id="zero-1"></article>
  38. </section>
  39. <section id="one" data-transition="slide" data-children="two" data-aside="b">
  40. <header data-title="One" data-back="chevron-left">
  41. <nav class="left">
  42. <button data-icon="list" data-view-aside="b"></button>
  43. </nav>
  44. <nav class="on-right">
  45. <button data-icon="arrow-right" data-view-section="two"></button>
  46. </nav>
  47. </header>
  48. <article id="one-1"></article>
  49. </section>
  50. <section id="two" data-transition="slide" data-children="three">
  51. <header data-back="chevron-left" data-title="Two">
  52. <nav class="on-right">
  53. <button data-icon="arrow-right" data-view-section="three"></button>
  54. </nav>
  55. </header>
  56. <article id="two-1"></article>
  57. </section>
  58. <section id="three" data-transition="slide" data-children="four">
  59. <header data-back="chevron-left" data-title="Three">
  60. <nav class="on-right">
  61. <button data-icon="arrow-down" data-view-section="four"></button>
  62. </nav>
  63. </header>
  64. <article id="three-1"></article>
  65. </section>
  66. <section id="four" data-transition="cover">
  67. <header data-back="chevron-left" data-title="Four"></header>
  68. <article id="four-1"></article>
  69. </section>
  70. <!-- Lungo dependencies -->
  71. <script src="components/quojs/quo.js"></script>
  72. <script src="components/lungo.brownie/lungo.debug.js"></script>
  73. <!-- LungoJS - Sandbox App -->
  74. <script>
  75. Lungo.init({
  76. name: 'Flexbox',
  77. version: '2.2',
  78. history: false
  79. });
  80. // Lungo.Notification.show("user", "Hello world! yeah");
  81. // Lungo.Notification.show()
  82. </script>
  83. </body>
  84. </html>