Chapter 397: Staggers
Core Idea
staggering walkthrough
Key Concepts
-
Property
-
each
-
from
-
grid
-
axis
-
ease
Code Examples
gsap.to('.box', {
y: 100,
stagger: 0.1 // 0.1 seconds between when each ".box" element starts animating
});
- What it demonstrates: typical usage of Staggers in a GSAP animation.
Key Takeaways
-
Property
-
each
-
from
-
grid
-
axis
Connects To