<div class="box gradient-green"></div>
<div class="box gradient-green"></div>
<div class="box gradient-green"></div>
<div class="box gradient-green"></div>
body {
line-height: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
padding: 0;
margin: 0;
overflow: hidden;
}
.box {
margin: 1rem;
}
gsap.to(".box", {
keyframes: {
y: [0, 80, -10, 30, 0],
ease: "none", // <- ease across the entire set of keyframes (defaults to the one defined in the tween, or "none" if one isn't defined there)
easeEach: "power2.inOut" // <- ease between each keyframe (defaults to "power1.inOut")
},
rotate: 180,
ease: "elastic", // <- the "normal" part of the tween. In this case, it affects "rotate" because it's outside the keyframes
duration: 5,
stagger: 0.2
});