gsap-timeline
greensock/gsap-skills
Sequence and choreograph multi-step animations with GSAP timelines, position parameters, and nested playback control.
What is gsap-timeline?
GSAP Timeline lets you coordinate multiple tweens in sequence or parallel, control playback, and manage complex animation choreography. Use it when building multi-step animations, sequencing keyframes, or when the user asks about animation order and timing in GSAP.
- Create timelines with gsap.timeline() to append and coordinate multiple tweens
- Use position parameters (absolute, relative, labels, placement operators) to place tweens at specific times or relative to other tweens
- Add labels for readable, maintainable sequencing and jump to specific points in the timeline
- Nest timelines within timelines for hierarchical animation control
- Pass defaults to timelines so all child tweens inherit duration, ease, and other properties
- Control playback with play(), pause(), reverse(), restart(), seek by time or progress, and kill()
How to install gsap-timeline
npx skills add https://github.com/greensock/gsap-skills --skill gsap-timeline- GSAP library installed (gsap package)
- Familiarity with GSAP tweens (gsap-core skill recommended)
How to use gsap-timeline
- 1.Create a timeline with gsap.timeline() and optionally pass constructor options like paused, repeat, yoyo, or defaults
- 2.Add tweens to the timeline using .to(), .from(), .fromTo() methods; by default they append sequentially
- 3.Use the position parameter (third argument) to control timing: absolute times (1), relative offsets (+=0.5, -=0.2), labels, or placement operators (<, >, <0.2)
- 4.Add labels with .addLabel(name, time) for readable waypoints and reference them in position parameters
- 5.Nest child timelines using .add(childTimeline, position) to build hierarchical animations
- 6.Control playback with .play(), .pause(), .reverse(), .restart(), .time(seconds), or .progress(0-1) to seek
Use cases
- Choreograph a multi-step UI animation sequence (fade in, slide, scale) with precise timing
- Coordinate animations across multiple elements that must start at different times or overlap
- Build complex keyframe-style animations by nesting timelines and using labels as waypoints
- Create reusable animation patterns by nesting child timelines into a master timeline
- Implement scrubbing or interactive playback by seeking the timeline to specific progress values
- Frontend developers building interactive animations and transitions
- UI/UX engineers choreographing multi-element animation sequences
- Game and interactive media developers coordinating timed events
- Developers migrating from keyframe-based animation tools to GSAP
gsap-timeline FAQ
'>' (default) starts the next tween when the previous one ends. '<' starts it when the previous one starts. Use '<' for parallel animations and '>' for sequential ones.
Always prefer the position parameter and timelines over delay. It's cleaner, more maintainable, and integrates better with labels and timeline control.
No. ScrollTriggers should only be attached to top-level Tweens or Timelines, not to tweens nested inside a timeline.
Pass a defaults object to the timeline constructor: gsap.timeline({ defaults: { duration: 0.5, ease: 'power2.out' } })
Yes. Use .time(seconds) to seek to a specific time, .progress(0-1) to seek by percentage, or .play(label) to start from a label.
Full instructions (SKILL.md)
Source of truth, from greensock/gsap-skills.
name: gsap-timeline description: Official GSAP skill for timelines — gsap.timeline(), position parameter, nesting, playback. Use when sequencing animations, choreographing keyframes, or when the user asks about animation sequencing, timelines, or animation order (in GSAP or when recommending a library that supports timelines). license: MIT
GSAP Timeline
When to Use This Skill
Apply when building multi-step animations, coordinating several tweens in sequence or parallel, or when the user asks about timelines, sequencing, or keyframe-style animation in GSAP.
Related skills: For single tweens and eases use gsap-core; for scroll-driven timelines use gsap-scrolltrigger; for React use gsap-react.
Creating a Timeline
const tl = gsap.timeline();
tl.to(".a", { x: 100, duration: 1 })
.to(".b", { y: 50, duration: 0.5 })
.to(".c", { opacity: 0, duration: 0.3 });
By default, tweens are appended one after another. Use the position parameter to place tweens at specific times or relative to other tweens.
Position Parameter
Third argument (or position property in vars) controls placement:
- Absolute:
1— start at 1 second. - Relative (default):
"+=0.5"— 0.5s after end;"-=0.2"— 0.2s before end. - Label:
"labelName"— at that label;"labelName+=0.3"— 0.3s after label. - Placement:
"<"— start when recently-added animation starts;">"— start when recently-added animation ends (default);"<0.2"— 0.2s after recently-added animation start.
Examples:
tl.to(".a", { x: 100 }, 0); // at 0
tl.to(".b", { y: 50 }, "+=0.5"); // 0.5s after last end
tl.to(".c", { opacity: 0 }, "<"); // same start as previous
tl.to(".d", { scale: 2 }, "<0.2"); // 0.2s after previous start
Timeline Defaults
Pass defaults into the timeline so all child tweens inherit:
const tl = gsap.timeline({ defaults: { duration: 0.5, ease: "power2.out" } });
tl.to(".a", { x: 100 }).to(".b", { y: 50 }); // both use 0.5s and power2.out
Timeline Options (constructor)
- paused: true — create paused; call
.play()to start. - repeat, yoyo — same as tweens; apply to whole timeline.
- onComplete, onStart, onUpdate — timeline-level callbacks.
- defaults — vars merged into every child tween.
Labels
Add and use labels for readable, maintainable sequencing:
tl.addLabel("intro", 0);
tl.to(".a", { x: 100 }, "intro");
tl.addLabel("outro", "+=0.5");
tl.to(".b", { opacity: 0 }, "outro");
tl.play("outro"); // start from "outro"
tl.tweenFromTo("intro", "outro"); // pauses the timeline and returns a new Tween that animates the timeline's playhead from intro to outro with no ease.
Nesting Timelines
Timelines can contain other timelines.
const master = gsap.timeline();
const child = gsap.timeline();
child.to(".a", { x: 100 }).to(".b", { y: 50 });
master.add(child, 0);
master.to(".c", { opacity: 0 }, "+=0.2");
Controlling Playback
- tl.play() / tl.pause()
- tl.reverse() / tl.progress(1) then tl.reverse()
- tl.restart() — from start.
- tl.time(2) — seek to 2 seconds.
- tl.progress(0.5) — seek to 50%.
- tl.kill() — kill timeline and (by default) its children.
Official GSAP Best practices
- ✅ Prefer timelines for sequencing
- ✅ Use the position parameter (third argument) to place tweens at specific times or relative to labels.
- ✅ Add labels with
addLabel()for readable, maintainable sequencing. - ✅ Pass defaults into the timeline constructor so child tweens inherit duration, ease, etc.
- ✅ Put ScrollTrigger on the timeline (or top-level tween), not on tweens inside a timeline.
Do Not
- ❌ Chain animations with delay when a timeline can sequence them; prefer
gsap.timeline()and the position parameter for multi-step animation. - ❌ Forget to pass defaults (e.g.
defaults: { duration: 0.5, ease: "power2.out" }) when many child tweens share the same duration or ease. - ❌ Forget that duration on the timeline constructor is not the same as tween duration; timeline “duration” is determined by its children.
- ❌ Nest animations that contain a ScrollTrigger; ScrollTriggers should only be on top-level Tweens/Timelines.
Related skills
More from greensock/gsap-skills and the wider catalog.
gsap-core
Official GSAP core API for JavaScript animations — tweens, easing, stagger, and responsive animation.
gsap-scrolltrigger
Official GSAP plugin for scroll-linked animations, pinning, and scrubbing.
gsap-performance
Optimize GSAP animations for 60fps—prefer transforms, batch operations, and avoid layout thrashing.
gsap-plugins
Official GSAP plugins for animations—scroll, drag, flip layouts, text effects, SVG, and easing.
gsap-utils
Official GSAP utility functions for math, value mapping, randomization, and array handling in animations.
gsap-react
Official GSAP hook and patterns for smooth animations in React and Next.js.