-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (87 loc) · 2.41 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
83
84
85
86
87
<!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>Gallery Landing Page Website</title>
<link rel="stylesheet" href="style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.0/gsap.min.js"></script>
</head>
<body>
<header>
<div class="img">
<img src="logo.svg" alt="" />
</div>
<div class="heading">ART GALLERY</div>
<div class="menu">
<img src="menu.svg" alt="" />
</div>
</header>
<div class="container">
<div class="inner-container inner-container-1">
<div class="inner-inner-container">
<div class="top-section">
<h1>
The <br />
night <br />
watch
</h1>
<p>MDCLIIX</p>
</div>
<div class="bottom-section">2</div>
</div>
</div>
<div class="inner-container inner-container-2">
<div class="inner-inner-container">
<div class="top-section">
<h1>
The <br />
Kitchen <br />
Maid
</h1>
<p>MDCLI</p>
</div>
<div class="bottom-section">3</div>
</div>
</div>
<div class="inner-container inner-container-3">
<div class="inner-inner-container">
<div class="top-section">
<h1>
The <br />
artist in <br />
studio
</h1>
<p>MDCXVII</p>
</div>
<div class="bottom-section">4</div>
</div>
</div>
<div class="inner-container inner-container-4">
<div class="inner-inner-container">
<div class="top-section">
<h1>
Titus <br />
as a <br />
Monk
</h1>
<p>MDCLX</p>
</div>
<div class="bottom-section">5</div>
</div>
</div>
</div>
<script>
const tl = gsap.timeline();
tl.from(".img, .heading, .menu, h1, p, .bottom-section", {
duration: 1,
y: 200,
opacity: 0,
stagger: {
amount: 0.5,
},
});
</script>
</body>
</html>