-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (52 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Animate on scroll</title>
<link rel="stylesheet" href="style.css" />
<script defer src="app.js"></script>
</head>
<body>
<h1>Animate on scrolling</h1>
<section class="hidden">
<h1>Hi!</h1>
<p>This is Saharsh</p>
</section>
<section class="hidden">
<h2>Lets learn something new</h2>
<p>
<a href="https://github.com/saharshg/animate-on-scroll">How to</a>
animate anything while scrolling in the page
</p>
</section>
<section>
<h2>This looks amazing</h2>
<div>
<div class="avatar hidden">
<img src="https://avatars.dicebear.com/api/avataaars/boo.svg" />
</div>
<div class="avatar hidden">
<img src="https://avatars.dicebear.com/api/avataaars/booo.svg" />
</div>
<div class="avatar hidden">
<img src="https://avatars.dicebear.com/api/avataaars/boooo.svg" />
</div>
<div class="avatar hidden">
<img src="https://avatars.dicebear.com/api/avataaars/booooo.svg" />
</div>
<div class="avatar hidden">
<img src="https://avatars.dicebear.com/api/avataaars/boooooo.svg" />
</div>
</div>
</section>
<section class="hidden">
<h3>
Don't follow me on Twitter
<a target="#" href="https://twitter.com/saharshg10">@saharshg10</a>
</h3>
<h1>Thanks!</h1>
</section>
</body>
</html>