-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (41 loc) · 1.92 KB
/
index.html
File metadata and controls
47 lines (41 loc) · 1.92 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Weeknd GSAP Scroll Effect</title>
<meta name="description" content="The Weeknd Website GSAP Scroll Effect.">
<meta name="author" content="Ayush Shukla">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!----------------------------------------------------LandingPage Intro--------------------------------------------------->
<div id="wrapper">
<h1>The Weeknd <br> <span>GSAP Scroll Effect</span></h1>
<p>Scroll Down</p>
</div>
<!----------------------------------------------------/LandingPage Intro--------------------------------------------------->
<!----------------------------------------------------LandingPage--------------------------------------------------->
<div id="ImgWrapper">
<img id="img1" src="img/asset 7.jpeg" alt="">
<img id="img2" src="img/asset 2.jpeg" alt="">
<img id="img3" src="img/asset 6.jpeg" alt="">
<img id="img4" src="img/asset 5.jpeg" alt="">
<img id="img5" src="img/asset 3.jpeg" alt="">
<img id="img6" src="img/asset 4.jpeg" alt="">
<img id="img7" src="img/asset 1.jpeg" alt="">
<!------------CodeBy------------>
<div id="codeby">
<a target="_blank" href="https://icodeayush.github.io/">Code By <span>iCodeAyush</span></a>
</div>
<!------------/CodeBy------------>
</div>
<!----------------------------------------------------/LandingPage--------------------------------------------------->
<!-- GSAP.js -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/gsap.min.js'></script>
<!-- ScrollTrigger.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.1/ScrollTrigger.min.js"></script>
<script src="JS/App.js"></script>
</body>
</html>