gsap-easing
Installation
SKILL.md
GSAP Easing
Easing functions control how animations progress over time. GSAP provides extensive built-in eases plus plugins for custom curves, elastic effects, and bounce animations.
Basic Eases
Power Eases
// Power0 - Linear (no easing)
gsap.to('.box', {
x: 200,
duration: 1,
ease: 'none' // Same as 'power0'
})