What problem does it solve? Building scroll-driven animations from scratch requires manual scroll event handling, position calculations, and layout management. This Skill provides the correct patterns for GSAP ScrollTrigger so you can trigger tweens on scroll, pin sections, scrub timelines to scroll position, and build fake horizontal scroll effects without common pitfalls. ## Core Features & Use Cases - Scroll-Linked Animations: Tie tweens and timelines to scroll position with start/end triggers, toggleActions, and scrub for direct scroll-driven progress. - Pinning and Horizontal Scroll: Pin sections during scroll ranges and build fake horizontal scroll using containerAnimation with the required ease: "none" pattern. - Batching and Custom Scrollers: Use ScrollTrigger.batch() for staggered reveal animations and scrollerProxy() to integrate third-party smooth-scroll libraries. - Use Case: A landing page needs a hero section pinned while content scrolls horizontally, plus cards that fade in as they enter the viewport. This Skill provides the exact ScrollTrigger configuration, refresh handling, and React cleanup patterns to implement it correctly. ## Quick Start Ask the AI to create a GSAP ScrollTrigger animation that pins a section and scrubs a timeline as the user scrolls down the page.