-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtweening.html
More file actions
29 lines (29 loc) · 740 Bytes
/
tweening.html
File metadata and controls
29 lines (29 loc) · 740 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
<!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 bg-green-500"></div>
<script>
gsap.to("#box", {
duration: 2,
x: 200,
ease: "bounce.out",
}).then(() => {
gsap.to("#box", {
duration: 2,
x: 0,
ease: "power1.inOut",
});
});
</script>
</body>
</html>