-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 1.02 KB
/
index.html
File metadata and controls
29 lines (27 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scroll Animation with GSAP</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/ScrollTrigger.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.13.0/dist/SplitText.min.js"></script>
</head>
<body>
<header>
<h1>Scroll-triggered Animations</h1>
</header>
<section class="box">Section 1</section>
<section class="box"><img class="animate-img" src="./pic1.jpg" /></section>
<section class="box"><img class="animate-img" src="./pic2.jpg" /></section>
<section class="box"><img class="animate-img" src="./pic3.jpg" />
<p class="animate-text">This is a paragraph that will animate.</p>
</section>
<section class="box">
<h2 class="split-text">This is a split text effect!</h2>
</section>
<script src="main.js"></script>
</body>
</html>