-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (69 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Animated Sections with GSAP</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css'>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<div>Animated Sections</div>
<div><a href="https://codepen.io/smitdudhat/pens/public"> Smit Dudhat </a></div>
</header>
<section class="first">
<div class="outer">
<div class="inner">
<div class="bg one">
<h2 class="section-heading">Scroll down</h2>
</div>
</div>
</div>
</section>
<section class="second">
<div class="outer">
<div class="inner">
<div class="bg">
<h2 class="section-heading">Animated with GSAP</h2>
</div>
</div>
</div>
</section>
<section class="third">
<div class="outer">
<div class="inner">
<div class="bg">
<h2 class="section-heading">GreenSock</h2>
</div>
</div>
</div>
</section>
<section class="fourth">
<div class="outer">
<div class="inner">
<div class="bg">
<h2 class="section-heading">Animation platform</h2>
</div>
</div>
</div>
</section>
<section class="fifth">
<div class="outer">
<div class="inner">
<div class="bg">
<h2 class="section-heading">Keep scrolling</h2>
</div>
</div>
</div>
</section>
<!-- partial -->
<script src='./js/gsap-latest-beta.min.js'></script>
<script src='./js/Observer.min.js'></script>
<script src='./js/SplitText3.min.js'></script>
<script src="./js/script.js"></script>
</body>
</html>