Animation
Animation
GSAP
Method
ScrollTrigger
import { gsap } from 'gsap';
import { ScrollTrigger } from 'gsap/ScrollTrigger';
gsap.registerPlugin(ScrollTrigger);
gsap.to(target, {
scrollTrigger: {
trigger: Trigger DOM Target,
// 트리거로 지정한 top 부분이 뷰포트 bottom 영역을 도달한 순간 애니메이션을 시작
start: 'top bottom',
end: 'bottom bottom',
markers: true,
scrub: true,
}
})
Last updated
