gsap
# GSAP Skill
What this skill does
# GSAP Skill
GreenSock Animation Platform — high-performance JS animation engine with plugin ecosystem.
## Install
```bash
npm install gsap
# Plugins (ScrollTrigger free, others require club membership):
# ScrollTrigger, Flip, Observer, ScrollSmoother — included in gsap package
```
## Core API
```ts
import gsap from "gsap";
import { ScrollTrigger } from "gsap/ScrollTrigger";
import { Flip } from "gsap/Flip";
gsap.registerPlugin(ScrollTrigger, Flip);
```
| Method | Purpose |
|--------|---------|
| `gsap.to(target, vars)` | Animate FROM current state TO vars |
| `gsap.from(target, vars)` | Animate FROM vars TO current state |
| `gsap.fromTo(target, from, to)` | Explicit start and end |
| `gsap.set(target, vars)` | Instant set, no animation |
| `gsap.timeline(vars)` | Sequence multiple tweens |
| `gsap.context(fn, scope)` | Scope cleanup (React) |
| `gsap.matchMedia()` | Responsive animations |
## Tween Properties
```ts
gsap.to(".box", {
x: 100, // translateX (px)
y: -50, // translateY
rotation: 360, // degrees
scale: 1.5,
opacity: 0,
duration: 1,
delay: 0.2,
ease: "power2.out",
stagger: 0.1, // when targeting multiple elements
repeat: -1, // -1 = infinite
yoyo: true, // reverse on repeat
onComplete: () => console.log("done"),
});
```
## Easing Reference
| Ease | Character |
|------|-----------|
| `power1-4.in/out/inOut` | Polynomial — power2.out is the go-to |
| `elastic.out(1, 0.3)` | Springy bounce |
| `back.out(1.7)` | Slight overshoot |
| `bounce.out` | Ball bounce |
| `circ.out` | Circular — sharp deceleration |
| `expo.out` | Dramatic fast-to-slow |
| `none` / `linear` | Constant speed |
## Timeline
```ts
const tl = gsap.timeline({ defaults: { ease: "power2.out", duration: 0.5 } });
tl.from(".hero-title", { opacity: 0, y: 60 })
.from(".hero-subtitle", { opacity: 0, y: 40 }, "-=0.3") // 0.3s overlap
.from(".hero-cta", { opacity: 0, scale: 0.9 }, "+=0.1") // 0.1s gap
.from(".hero-image", { opacity: 0, x: 60 }, "<0.2"); // same start as prev + 0.2
// Position parameter:
// "<" = same start as previous
// ">" = end of previous
// "+=n" = n seconds after end
// "-=n" = n seconds before end
// "1.5" = absolute time in timeline
```
## ScrollTrigger
```ts
gsap.to(".panel", {
xPercent: -100 * (panels.length - 1),
ease: "none",
scrollTrigger: {
trigger: ".scroll-container",
pin: true, // pins the trigger element during scroll
scrub: 1, // smooth scrubbing (lag in seconds)
snap: 1 / (panels.length - 1),
end: () => `+=${containerRef.current?.offsetWidth}`,
}
});
// Callbacks
ScrollTrigger.create({
trigger: "#section",
start: "top 80%",
end: "bottom 20%",
onEnter: () => console.log("entered"),
onLeave: () => console.log("left"),
onEnterBack: () => console.log("entered back"),
markers: process.env.NODE_ENV === "development", // visual debug markers
});
```
## React Integration — useGSAP hook
```tsx
import { useGSAP } from "@gsap/react";
import gsap from "gsap";
import { useRef } from "react";
gsap.registerPlugin(useGSAP);
function AnimatedHero() {
const containerRef = useRef<HTMLDivElement>(null);
useGSAP(() => {
// All GSAP code here is automatically cleaned up on unmount
gsap.from(".title", { opacity: 0, y: 60, duration: 0.8, ease: "power3.out" });
}, { scope: containerRef }); // scope = only select within containerRef
return (
<div ref={containerRef}>
<h1 className="title">Hello</h1>
</div>
);
}
```
## Context (manual cleanup without useGSAP)
```tsx
useEffect(() => {
const ctx = gsap.context(() => {
gsap.from(".item", { opacity: 0, stagger: 0.1 });
}, containerRef);
return () => ctx.revert(); // kills all tweens created in context
}, []);
```
## Stagger
```ts
gsap.from(".card", {
opacity: 0, y: 30,
stagger: {
amount: 0.6, // total time spread across all elements
from: "center", // start: "start" | "end" | "center" | "random" | index
ease: "power2.inOut",
grid: [3, 4], // for grid layouts
}
});
```
## SVG Path Draw (manual, no plugin)
```ts
function animatePath(el: SVGPathElement) {
const len = el.getTotalLength();
gsap.set(el, { strokeDasharray: len, strokeDashoffset: len });
gsap.to(el, { strokeDashoffset: 0, duration: 2, ease: "power2.inOut" });
}
```
## matchMedia (responsive)
```ts
const mm = gsap.matchMedia();
mm.add("(min-width: 768px)", () => {
gsap.from(".title", { x: -100, opacity: 0 });
});
mm.add("(max-width: 767px)", () => {
gsap.from(".title", { y: 40, opacity: 0 });
});
// Cleanup:
return () => mm.revert();
```
## Reduced Motion
```ts
const prefersReduced = window.matchMedia("(prefers-reduced-motion: reduce)").matches;
gsap.to(".element", {
x: prefersReduced ? 0 : 200,
duration: prefersReduced ? 0 : 1,
opacity: 1,
});
```
## Pitfalls
- Always `ctx.revert()` or use `useGSAP` in React — GSAP tweens survive component unmount otherwise
- `scrub: true` = hard sync with scroll; `scrub: 1` = 1s lag (smoother)
- `pin: true` — the trigger element must have explicit height for the pinned section to work
- Avoid `document.querySelector` inside components — use refs with `gsap.context(scope)`
- `ScrollTrigger.refresh()` after dynamic content loads (images, fonts)
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.