Skip to content

Instantly share code, notes, and snippets.

@theredstapler
Created June 24, 2016 12:26
Show Gist options
  • Save theredstapler/e7cc81be8ff70bfc764df9cb602e549e to your computer and use it in GitHub Desktop.
Save theredstapler/e7cc81be8ff70bfc764df9cb602e549e to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="jquery-1.11.3.js"></script>
<script src="jquery.fullPage.min.js"></script>
<link rel="stylesheet" href="jquery.fullPage.css">
</head>
<body>
<div id="wrapper">
<div class="section">
<img src="/images/1.jpg" />
</div>
<div class="section">
<img src="/images/2.jpg" />
</div>
<div class="section">
<div class="slide">
<img src="/images/3.jpg" />
</div>
<div class="slide">
<img src="/images/3-2.jpg" />
</div>
<div class="slide">
<img src="/images/3-3.jpg" />
</div>
</div>
<div class="section">
<img src="/images/4.jpg" />
</div>
</div>
<script>
$(document).ready(function(){
$('#wrapper').fullpage();
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment