1234567891011121314151617181920212223242526272829303132333435 |
- ---
- title: Modal
- layout: example
- type: examples
- order: 1
- ---
- {% blockquote %}
- Making a modal dialog great again.
- {% endblockquote %}
- <link rel="stylesheet" href="app.css">
- <% include app.html %>
- <script src="app.js"></script>
- <hr />
- <p id="console-wrapper">
- Console output (latest logs are at the top): <br />
- </p>
- <p>
- On this page we're using the following HTML snippet:
- </p>
- {% include_code lang:html fakemodal/app.html %}
- <p>
- Along with this JavaScript:
- </p>
- {% include_code lang:js fakemodal/app.es6 %}
- <p>
- And the following CSS:
- </p>
- {% include_code lang:css fakemodal/app.css %}
|