-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (26 loc) · 1.05 KB
/
index.html
File metadata and controls
30 lines (26 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<html>
<head>
<title>Parallax</title>
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Behavioral Meta Data -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<div id="container" class="container">
<ul id="scene" class="scene">
<li class="layer" data-depth="0.00"><div class="one"></div></li>
<li class="layer" data-depth="0.20"><div class="two"></div></li>
<li class="layer" data-depth="0.40"><div class="three"></div></li>
<li class="layer" data-depth="0.60"><div class="four"></div></li>
<li class="layer" data-depth="0.80"><div class="five"></div></li>
<li class="layer" data-depth="1.00"><div class="six"></div></li>
</ul>
</div>
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="js/jquery.parallax.min.js"></script>
<script>
$("#scene").parallax();
</script>
</body>
</html>