What problem does it solve? Coordinating multiple animations with chained delays becomes fragile and hard to maintain. This Skill provides the official GSAP timeline patterns for sequencing tweens in order or in parallel, so multi-step animations stay readable and controllable. ## Core Features & Use Cases - Timeline Sequencing: Create timelines with gsap.timeline() and append tweens that play one after another by default. - Position Parameter & Labels: Place tweens at absolute times, relative offsets, or named labels for precise choreography. - Nesting & Playback Control: Nest child timelines inside a master timeline and control playback with play, pause, reverse, seek, and progress. - Use Case: Build a page intro where a logo slides in, a headline fades up 0.2 seconds later, and a call-to-action button scales in at the same time, all coordinated through one timeline with labels. ## Quick Start Ask the AI to create a GSAP timeline that animates several elements in sequence using the position parameter and labels.