<script src="<https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js>" integrity="sha512-7eHRwcbYkK4d9g/6tD/mhkf++eoTHwpNM9woBxtPUBWm67zeAfFC+HrdoE2GanKeocly/VxeLvIqwvCdk7qScg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
gsap - Libraries - cdnjs - The #1 free and open source CDN built to make life easier for developers
gsap.to()
—> Initial to Final Stategsap.to(target, { duration: value, properties });
backgroundColor
: Background color of an element.Move an element to the right by 200 pixels over 2 seconds.
gsap.to(".box", { duration: 2, x: 200 });
ease: "power0"
or ease: "linear"