-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasicTimeline.html
More file actions
36 lines (34 loc) · 920 Bytes
/
basicTimeline.html
File metadata and controls
36 lines (34 loc) · 920 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script src="https://cdn.jsdelivr.net/npm/gsap@3.12.5/dist/gsap.min.js"></script>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css"
/>
</head>
<body class="flex flex-col justify-center items-center w-screen h-screen">
<div id="box" class="relative w-24 h-24 m-2 bg-red-500"></div>
<div id="box" class="relative w-24 h-24 m-2 bg-blue-500"></div>
<div id="box" class="relative w-24 h-24 m-2 bg-green-500"></div>
<script>
let tl = gsap.timeline();
tl.to("#box", {
duration: 1,
x: 100,
})
.to("#box", {
duration: 1,
y: 50,
backgroundColor: "#FFF",
})
.to("#box", {
duration: 1,
opacity: 0,
});
</script>
</body>
</html>