Animation
Animation
GSAP
GreenSockμμ λ§λ Animation Platform
μ λλ©μ΄μ μ JSλ‘ μ½κ² ꡬνν μ μκ² λμμ£Όλ λΌμ΄λΈλ¬λ¦¬
Method
.to(targets, options})
: μ λλ©μ΄μ μ μ μ©ν νκ²μ μ§μ νμ¬ μ λλ©μ΄μ μ μ€μ .timeline()
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,
}
})
trigger: trigger μ§μ μμκ° viewport μμ λ€μ΄μ€λ μκ° μμ μ§μ ν μ λλ©μ΄μ μ΄ νΈλ¦¬κ±°λλΌ
start: scroll triggerκ° μμλλ μμ μ μ€μ (default => 'top bottom')
end: μ λλ©μ΄μ μ΄ λλλ μμ μ μ€μ
markers: μ΄λ²€νΈκ° μμλλ μμ μ μκ°μ μΌλ‘ νμΈ κ°λ₯
scrub: νλ©΄μ μ€ν¬λ‘€νλ μκ° λ°λ‘ μ μ©λλ κ²μ΄ μλ μ€ν¬λ‘€ν μ λμ λ°λΌ λ³νλλ€.
pin: λμμ νλ©΄μ κ³ μ μν¨λ€.
Last updated