Skip to content

Instantly share code, notes, and snippets.

@ishitcno1
Created October 16, 2014 09:16
Show Gist options
  • Select an option

  • Save ishitcno1/96f010425c29bb94d7e1 to your computer and use it in GitHub Desktop.

Select an option

Save ishitcno1/96f010425c29bb94d7e1 to your computer and use it in GitHub Desktop.
impress.js index.html backbone
<!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