Created
October 16, 2014 09:16
-
-
Save ishitcno1/96f010425c29bb94d7e1 to your computer and use it in GitHub Desktop.
impress.js index.html backbone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Title</title> | |
| <link href="css/normalize.css" rel="stylesheet" /> | |
| <link href="css/style.css" rel="stylesheet" /> | |
| </head> | |
| <body> | |
| <div id="impress"> | |
| <div class="step slide" data-scale="5"> | |
| <div class="title"> | |
| <h3>Title</h3> | |
| </div> | |
| </div> | |
| <div class="step slide" data-x="900" data-y="700" data-rotate="90"> | |
| <div class="slide-title"> | |
| Slide Title | |
| </div> | |
| <div class="slide-content"> | |
| <p>Slide Content</p> | |
| </div> | |
| </div> | |
| </div> | |
| <script src="js/impress.js"></script> | |
| <script>impress().init();</script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment