Installing GSAP & Your first animation
Installing GSAP via NPM
npm install gsapCreating your first GSAP animation
// Import GSAP
import { gsap } from 'gsap';
gsap.from('.box', { duration: 1, x: 100, opacity: 0 });Last updated