-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (82 loc) · 2.78 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<title>Scrolling</title>
</head>
<body>
<div id="skrollr-body">
<section id="slide-1" class="homeSlide">
<div class="bcg"
data-center="background-position: 50% 0px;"
data-top-bottom="background-position: 50% -100px;"
data-anchor-target="#slide-1">
<div class="hsContainer">
<div class="hsContent"
data-center="opacity: 1"
data-106-top="opacity: 0"
data-anchor-target="#slide-1 h2">
<h2>Fade out elements before <br>they leave viewport</h2>
</div>
</div>
</div>
</section>
<section id="slide-2">
<div class="bcg"
data-0="background-color:rgb(1,27,59);"
data-top="background-color:(0,0,0);"
data-anchor-target="#slide-2">
<div class="hsContainer">
<div class="hsContent">
<h2 data--200-bottom="opacity: 0"
data-center="opacity: 1"
data-206-top="opacity: 1"
data-106-top="opacity: 0"
data-anchor-target="#slide-2 h2">
Fade me in and out
</h2>
</div>
</div>
</div>
</section>
<section id="slide-3">
<div class="bcg"
data-0="background-color:rgb(1,27,59);"
data-top="background-color:(0,0,0);"
data-anchor-target="#slide-3">
<div class="hsContainer">
<div class="hsContent">
<h2 data--200-bottom="opacity: 0"
data-center="opacity: 1"
data-206-top="opacity: 1"
data-106-top="opacity: 0"
data-anchor-target="#slide-3 h2">
Fade me in and out
</h2>
</div>
</div>
</div>
</section>
<section id="slide-4">
<div class="bcg"
data-0="background-color:rgb(1,27,59);"
data-top="background-color:(0,0,0);"
data-anchor-target="#slide-4">
<div class="hsContainer">
<div class="hsContent">
<h2 data--200-bottom="opacity: 0"
data-center="opacity: 1"
data-206-top="opacity: 1"
data-106-top="opacity: 0"
data-anchor-target="#slide-4 h2">
Fade me in and out
</h2>
</div>
</div>
</div>
</section>
</div>
<script type="text/javascript" src="./lib/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="./lib/skrollr.min.js"></script>
<script type="text/javascript" src="./js/script.js"></script>
</body>
</html>