-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
32 lines (30 loc) · 1.02 KB
/
index.html
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
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Scroll Based Animation</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- The `.container` element will contain all the images -->
<!-- It will be used also to perform the 'custom scroll' behavior -->
<div class="container">
<!-- Each following `div` correspond to one image -->
<!-- The images will be set using CSS backgrounds -->
<div class="image vh-fix"></div>
<div class="image vh-fix"></div>
<div class="image vh-fix"></div>
<div class="image vh-fix"></div>
<div class="image vh-fix"></div>
<div class="image vh-fix"></div>
<div class="image vh-fix"></div>
<div class="image vh-fix"></div>
<div class="image vh-fix"></div>
<div class="image vh-fix"></div>
</div>
<script src='js/vh-fix.js'></script>
<script src='js/scripts.js'></script>
</body>
</html>