Skip to content
Request-Quoteadmin2023-08-03T16:54:33+03:00
Page load link

Consult the Expert

Fill out the form below with your details, and we'll get back to you.

Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.

Request Quote

Fill out the form below with your details, and we'll get back to you.

Thank you for your message. It has been sent.
There was an error trying to send your message. Please try again later.
var colors = ["#f38630","#6fb936", "#ccc", "#6fb936"]; var wrap = gsap.utils.wrap(-100, 400); //initially colorize each box and position in a row gsap.set(".box", { backgroundColor: (i) => colors[i % colors.length], y: (i) => i * 50 }); gsap.to(".box", { duration: 5, ease: "none", y: "-=500", //move each box 500px to right modifiers: { y: gsap.utils.unitize(wrap) //force y value to wrap when it reaches -100 }, repeat: -1 }); //toggle overflow const overflow = document.querySelector("#overflow"); overflow.addEventListener("change", applyOverflow); function applyOverflow() { if(overflow.checked) { gsap.set(".wrapper", {overflow: "visible"}); } else { gsap.set(".wrapper", {overflow: "hidden"}); } }
Go to Top