navigation.html 3.4 KB

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