/gsap-practice

Animation practice demo site using gsap

Primary LanguageHTML

gsap-practice

Animation practice demo site using gsap

how to use GSAP

First, you should install gsap

npm install gsap

Second, we can use GSAP like this!

import gsap from 'gsap';

gsap.to('.box', {
    duration: 2,
    x: 300,
    rotation: 360,
})

...