<div class="fixed inset-0 flex justify-center">
<div id="thwomp" class="bg-red-600 w-24 h-24 absolute"></div>
</div>
import gsap from "https://cdn.skypack.dev/gsap";
const tl = new gsap.timeline({repeat:-1})
tl.to('#thwomp', {
y: 300,
ease: 'expo.in'
})
tl.to('#thwomp', {
y: 0,
ease: 'circ.out',
duration: 4
})
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.