Stagger in GSAP allows you to delay the start of animations between multiple elements, creating a cascading or wave-like effect. Instead of all elements animating at the same time, each one starts slightly after the previous.
This is especially useful for:
{
stagger: 0.2
}
You can also use advanced stagger options like:
stagger: {
each: 0.2, // time between each element
from: "center", // animation starts from the middle element
grid: "auto", // use with grids
ease: "power1.in" // stagger easing
}