What problem does it solve? Coordinating multiple animations with chained delays is fragile and hard to maintain. This Skill provides the official GSAP timeline patterns for sequencing, overlapping, and controlling multi-step animations declaratively. ## Core Features & Use Cases - Timeline Sequencing: Create timelines with gsap.timeline() and place tweens precisely using the position parameter (absolute times, relative offsets, labels, "<" and ">" placement). - Labels, Defaults & Nesting: Add labels with addLabel(), share defaults across child tweens, and nest child timelines inside a master timeline. - Playback Control: Play, pause, reverse, restart, seek with time() or progress(), and use tweenFromTo() to animate between labels. - Use Case: When building a landing page hero animation where a logo fades in, text slides up, and a button scales in with overlap, use this Skill to choreograph the sequence with a single timeline instead of stacked delays. ## Quick Start Ask the AI to build a GSAP timeline that fades in a header, slides up the content 0.2 seconds before the header finishes, and then reveals a call-to-action button using labels and the position parameter.