gsap-timeline

Sequences and choreographs GSAP animations using timelines, labels, and the position parameter.

52|3|Updated Aug 20, 2026
One-click install
npx skills add https://github.com/Wayn-Git/Amethyst --skill gsap-timeline-wayn-git
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: gsap-timeline
Source: https://github.com/Wayn-Git/Amethyst/tree/main/agents/skills/gsap-timeline
Command: npx skills add https://github.com/Wayn-Git/Amethyst --skill gsap-timeline-wayn-git

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires gsap.

What problem does it solve? Coordinating multiple animations with chained delays becomes fragile and hard to maintain. This Skill provides the official GSAP approach to sequencing tweens with timelines, so multi-step animations stay readable, controllable, and easy to adjust. ## 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 duration and ease through timeline defaults, and nest child timelines inside a master timeline. - Playback Control: Play, pause, reverse, restart, seek with time() or progress(), and animate between labels with tweenFromTo(). - Use Case: When building a landing page intro where a logo fades in, a headline slides up, and a button scales in with overlap, use this Skill to choreograph all three tweens on one timeline instead of juggling delay values. ## Quick Start Use the gsap-timeline skill to build a GSAP timeline that fades in a header, slides up a subtitle, and then reveals a call-to-action button with a slight overlap.

Frequently Asked Questions about gsap-timeline

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
When should I use a GSAP timeline instead of tween delays?▼

Use a timeline whenever you have multi-step or coordinated animations. Chaining delays is fragile because changing one duration breaks the rest, while a timeline with the position parameter keeps sequencing maintainable and controllable.