<div class="box"></div>
body {
background-color: #222;
}
.box {
width: 150px;
height: 150px;
background-color: #88ce02;
}
gsap.to(".box", {
x: "random(0, 500)",
y: "+=50",
duration: 1,
repeat: -1,
yoyo: true,
repeatRefresh: true
});
This Pen doesn't use any external CSS resources.