| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>Lungo Flexbox - SDK</title>
- <meta name="description" content="">
- <meta name="author" content="Javier Jiménez Villar (@soyjavi)">
- <meta name="HandheldFriendly" content="True">
- <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="format-detection" content="telephone=no">
- <meta http-equiv="cleartype" content="on">
- <!-- Main Stylesheet -->
- <link rel="stylesheet" href="components/lungo.brownie/lungo.css">
- <link rel="stylesheet" href="components/lungo.brownie/lungo.theme.css">
- <link rel="stylesheet" href="components/lungo.icon/lungo.icon.css">
- </head>
- <body>
- <!--
- <aside id="a">
- <header data-title="aside a"></header>
- <article></article>
- </aside>
- <aside id="b">
- <header data-title="aside b"></header>
- <article></article>
- </aside>
- -->
- <!-- <section id="zero" data-transition="slide" data-children="one" data-aside="a"> -->
- <section id="zero" data-transition="slide" data-children="one">
- <header data-title="Zero">
- <!-- <nav class="left">
- <button data-icon="list" data-view-aside="a"></button>
- </nav> -->
- <nav class="right">
- <button data-icon="arrow-right" data-view-section="one"></button>
- </nav>
- </header>
- <article id="zero-1"></article>
- </section>
- <!-- <section id="one" data-transition="slide" data-children="two" data-aside="b"> -->
- <section id="one" data-transition="slide" data-children="two">
- <header data-title="One" data-back="home">
- <!-- <nav class="left">
- <button data-icon="list" data-view-aside="b"></button>
- </nav> -->
- <nav class="right">
- <button data-icon="arrow-right" data-view-section="two"></button>
- </nav>
- </header>
- <article id="one-1"></article>
- </section>
- <section id="two" data-transition="slide" data-children="three">
- <header data-back="home" data-title="Two">
- <nav class="right">
- <button data-icon="arrow-right" data-view-section="three"></button>
- </nav>
- </header>
- <article id="two-1"></article>
- </section>
- <section id="three" data-transition="slide" data-children="four">
- <header data-back="home" data-title="Three">
- <nav class="right">
- <button data-icon="arrow-down" data-view-section="four"></button>
- </nav>
- </header>
- <article id="three-1"></article>
- </section>
- <!--
- <section id="four" data-transition="cover">
- <header data-back="home" data-title="Four"></header>
- <article id="four-1"></article>
- </section>
- -->
- <!-- Lungo dependencies -->
- <script src="components/quojs/quo.js"></script>
- <script src="components/lungo.brownie/lungo.debug.js"></script>
- <!-- LungoJS - Sandbox App -->
- <script>
- Lungo.init({
- name: 'Flexbox',
- version: '2.2',
- history: false
- });
- // Lungo.Notification.show("user", "Hello world! yeah");
- // Lungo.Notification.show()
- </script>
- </body>
- </html>
|