gsap-master

Create GSAP v3 animations with plugins and React integration.

2|Updated Jan 23, 2026
One-click install
npx skills add https://github.com/su69ar/rdnax-gsap-master --skill gsap-master-su69ar
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gsap-master
Source: https://github.com/su69ar/rdnax-gsap-master/tree/main/gsap-master
Command: npx skills add https://github.com/su69ar/rdnax-gsap-master --skill gsap-master-su69ar

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill provides comprehensive expertise in GSAP (GreenSock Animation Platform) to create high-performance, production-grade animations for interactive websites, eliminating the need for developers to learn every nuance of the library.

Core Features & Use Cases

  • Full GSAP v3 Coverage: From core tweens and timelines to all major plugins (ScrollTrigger, Flip, Draggable, etc.).
  • Framework Integration: Seamlessly integrates with React/Next.js using useGSAP and gsap.context for safe cleanup.
  • Performance & Accessibility: Focuses on best practices like prefers-reduced-motion and avoiding layout thrash.
  • Use Case: Implement complex scroll-based animations, interactive UI elements like carousels, or dynamic text reveals with confidence and efficiency.

Quick Start

Ask the AI to create a hero animation with a staggered text reveal.

Frequently Asked Questions about gsap-master

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

FAQPage Schema
How do I create scroll-based animations with GSAP ScrollTrigger?

GSAP ScrollTrigger creates scroll-based animations by linking playback progress to the scrollbar position. Expert patterns include pinning elements, scrubbing timelines, and integrating ScrollSmoother for fluid, production-grade scrolling effects.

Can I use GSAP animations in React and Next.js without memory leaks?

You can safely use GSAP animations in React and Next.js by leveraging the useGSAP hook and gsap.context. These tools handle automatic cleanup of animation instances, preventing memory leaks during component unmounts.

How do I make GSAP web animations accessible for reduced motion?

Accessible GSAP web animations respect user accessibility preferences by checking the prefers-reduced-motion media query. Implement matchMedia responsive design patterns to disable or simplify complex animations for sensitive users.

What is the best way to animate SVG graphics using GSAP?

Animating SVG graphics with GSAP is best handled using specialized plugins. DrawSVG animates strokes, MorphSVG transforms paths between shapes, and MotionPath translates elements along complex curves for dynamic visuals.

Why does my GSAP animation cause layout thrash and poor performance?

GSAP animation performance suffers from layout thrash when animating non-transform CSS properties. Optimize performance by exclusively animating transforms like x, y, and scale, and utilize GSAP's modifiers and utilities.

Does GSAP support physics-based interactive UI elements like draggable carousels?

GSAP supports physics-based interactive UI elements through the Draggable and Inertia plugins. These components enable smooth dragging, momentum tracking, and snapping for creating responsive carousels and interactive interfaces.