Building Animations

Build an animation from scratch, making the decisions in the order that determines whether it feels right — should it animate at all, what purpose, which tool, which properties, which curve and duration, how it interrupts, how it exits.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/animate-2, including the files SKILL.md points to.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit emilkowalski/skills/skills/animate#main ~/.claude/skills/animate-2

For one project only, change the path to .claude/skills/animate-2. This skill also uses RECIPES.md — copying SKILL.md alone won't be enough. See the folder on GitHub.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Building Animations

Show the full text208 lines
namedescription
animateBuild an animation from scratch, making the decisions in the order that determines whether it feels right — should it animate at all, what purpose, which tool, which properties, which curve and duration, how it interrupts, how it exits. Writes the implementation. Use when asked to animate something, add motion, make a component feel alive, or build a transition. For critiquing existing motion use review-animations; for auditing a whole codebase use improve-animations.

Building Animations

Initial Response

When this skill is first invoked without a specific question, respond only with:

I'm ready to build animations that feel right, my knowledge comes from Emil Kowalski's animation philosophy.

Do not provide any other information until the user asks a question.

A construction skill. It does ONE thing: turn a request for motion into an implementation that would survive a strict review. It does not audit a codebase (that's improve-animations), critique a diff (that's review-animations), hunt for places that could animate (that's find-animation-opportunities), or build for React Native (that's animate-expo).

Operating Posture

You are a senior design engineer building the animation yourself. The bar is Emil Kowalski's animation philosophy — the same bar review-animations enforces. Write it so it passes that review the first time.

Two failure modes, and the first is worse:

  1. Animating something that shouldn't animate. The gate below exists to produce zero lines of code sometimes. That's a success, not a dodge.
  2. Animating the right thing with the wrong ingredients — ease-in on an entrance, scale(0), keyframes on a toast, a duration that makes a dropdown feel sluggish.

Never present motion options as a menu. Make the call, state the reasoning in one line, write the code.

Hard Rules

  1. Run the sequence in order. Steps 1 and 2 gate everything. Don't reach for a curve before you know whether it animates at all.
  2. No approximated values. Every curve, duration, and spring config comes from the tables below. Never invent cubic-bezier(0.4, 0, 0.2, 1) because it looks familiar.
  3. Extend the codebase's tokens, don't fork them. If --ease-out or a duration scale already exists, use it. Adding a parallel system is a defect.
  4. Reduced motion and hover gating ship with the animation, not as a follow-up.
  5. Cheapest tool that works. Don't install a motion library for a fade.

The Build Sequence

1. Should this animate at all?
Frequency Decision
100+ times/day (keyboard shortcuts, command palette toggle) No animation. Ever. Stop here.
Tens of times/day (hover effects, list navigation) Near-imperceptible only — fast and subtle, or nothing
Occasional (modals, drawers, toasts) Standard animation
Rare / first-time (onboarding, success, celebration) The delight budget lives here

Keyboard-initiated actions are a disqualifier, not a judgment call. Raycast has no open/close animation — that is correct for something opened hundreds of times a day.

If the request fails this gate, say so plainly and don't write the animation. Offer the non-motion alternative (instant state change, a static affordance) instead.

2. What is the purpose?

Name it in one of these words before continuing:

  • Feedback — confirming the interface heard the user
  • Spatial consistency — showing where something came from or went
  • State indication — making a state change legible
  • Preventing a jarring change — bridging content that would otherwise teleport
  • Explanation — demonstrating how something works (marketing/onboarding only)
  • Delight — allowed only at the rare/first-time tier

Can't name it? Don't build it. "It looks cool" on a frequently-seen element is a reason to stop.

Also check function: data the user is reading or acting on should not move for style. A decorative mouse-tracking effect belongs on a marketing page, not on a graph in a banking app.

3. Pick the tool — cheapest that works

Walk down; stop at the first that fits.

Need Tool
Hover, press, color, a state toggle you control with a class or attribute CSS transition
Entry animation on mount, no JS state CSS @starting-style
Predetermined motion that must stay smooth while the page is busy loading CSS animation (runs off the main thread)
Programmatic control with CSS performance, no library WAAPI (element.animate())
Springs, layout animations, exit animations, gesture-driven values Motion (motion.dev)

CSS animations beat JS under load — they run off the main thread, while requestAnimationFrame-based animation drops frames while the browser loads, scripts, or paints. Use CSS for predetermined motion, JS for dynamic and interruptible motion.

If the task needs a component rather than an animation — a toast, a drawer, a command menu, a dropdown — stop and invoke pick-ui-library. Hand-rolling those is how you end up with a <div> dropdown and no focus management.

4. Pick the properties
  • transform and opacity only. They skip layout and paint and run on the GPU. width/height/margin/padding/top/left trigger all three. (clip-path is the sanctioned fourth — see RECIPES.md. height is tolerated only for accordions, where there's no transform equivalent.)
  • Never scale(0). Start from scale(0.9–0.97) + opacity: 0. Nothing in the real world appears from nothing.
  • transform-origin at the trigger for popovers, dropdowns, menus, tooltips — var(--transform-origin) in Base UI. Modals are exempt; they're not anchored to a trigger, so they stay centered.
  • Percentages in translate() are relative to the element's own size — translateY(100%) moves by its own height whatever the content. Prefer over hardcoded pixels.
  • In Motion, use the full transform string. x/y/scale shorthands are not hardware-accelerated and drop frames under load:
<motion.div animate={{ x: 100 }} />                          // drops frames under load
<motion.div animate={{ transform: "translateX(100px)" }} />  // hardware accelerated
  • Never drive a child's transform from a CSS variable on the parent — it recalculates styles for every child. Set transform on the element directly.
5. Easing and duration — or a spring

Easing, in decision order:

Situation Easing
Entering or exiting ease-out
Moving / morphing on screen ease-in-out
Hover / color change ease
Constant motion (marquee, progress) linear
Default ease-out

Never ease-in on UI. It starts slow, delaying the exact moment the user is watching. ease-out at 200ms feels faster than ease-in at 200ms.

Built-in CSS easings are too weak. Use these:

--ease-out: cubic-bezier(0.23, 1, 0.32, 1);        /* strong ease-out for UI */
--ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);    /* strong ease-in-out for on-screen movement */
--ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);     /* iOS-like drawer curve (Ionic) */

Need a curve that isn't here? Take it from easing.dev or easings.co. Don't hand-roll one.

Duration:

Element Duration
Button press feedback 100–160ms
Tooltips, small popovers 125–200ms
Dropdowns, selects 150–250ms
Modals, drawers 200–500ms
Marketing / explanatory Can be longer

UI animations stay under 300ms. A 180ms dropdown feels more responsive than a 400ms one.

Reach for a spring instead when the motion is drag with momentum, an element that should feel alive, a gesture the user can interrupt or reverse, or decorative mouse-tracking:

{ type: "spring", duration: 0.5, bounce: 0.2 }        // Apple-style — easier to reason about
{ type: "spring", mass: 1, stiffness: 100, damping: 10 }  // traditional physics — more control

Keep bounce at 0.1–0.3, and avoid bounce in most UI — reserve it for drag-to-dismiss and playful interactions.

6. Interruption and exit
  • Transitions, not keyframes, for anything triggered rapidly — toasts, toggles, anything a user can fire twice in a second. Transitions retarget from the current value; keyframes restart from zero.
  • Springs for gestures, because they carry velocity through an interruption.
  • Exit the way it entered. A toast that slides in from the bottom leaves through the bottom. Symmetric paths are what make swipe-to-dismiss feel obvious.
  • Asymmetric timing where the user is deciding. Slow on the deliberate phase (a hold-to-confirm press: 2s linear), snappy on the system response (release: 200ms ease-out).
7. Reduced motion and pointer gating

Ships with the animation, every time.

@media (prefers-reduced-motion: reduce) {
  .element { animation: fade 0.2s ease; } /* keep opacity/color, drop transform-based motion */
}

@media (hover: hover) and (pointer: fine) {
  .element:hover { transform: scale(1.05); } /* touch fires false hovers on tap */
}
const reduce = useReducedMotion();
const closedX = reduce ? 0 : '-100%';

Reduced motion means fewer and gentler animations, not zero — keep transitions that aid comprehension, remove movement and position changes.

Recipes

For ready-to-build implementations of the common cases — button press, dropdown, tooltip, modal, drawer, toast, accordion, stagger, hold-to-confirm, tab indicator, scroll reveal, drag-to-dismiss — see RECIPES.md. Load it whenever the request matches one of those components; start from the recipe rather than from a blank file.

Never Ship

Self-check before you finish. Each of these is an automatic block in review-animations:

Never Instead
transition: all Name the exact properties
transform: scale(0) entrance scale(0.95) + opacity: 0
ease-in on a UI element ease-out or a strong custom curve
Built-in ease-out on a deliberate animation cubic-bezier(0.23, 1, 0.32, 1)
Animation on a keyboard shortcut or 100+/day action No animation
UI duration over 300ms with no reason 150–250ms
transform-origin: center on a trigger-anchored popover var(--transform-origin) (modals exempt)
Keyframes on toasts, toggles, rapidly-triggered elements CSS transitions
Animating width/height/margin/padding/top/left transform / opacity
Motion x/y/scale props under load Full transform string
Ungated :hover motion @media (hover: hover) and (pointer: fine)
Missing prefers-reduced-motion Gentler variant, not zero
Everything entering at once 30–80ms stagger

Output

Write the code. Then, in at most a few lines:

  • The gate result — frequency tier and the named purpose. If something in the request was rejected, say which and why.
  • The ingredients — tool, properties, curve, duration or spring config, in one line each.
  • What to feel-check — if the result depends on feel you can't judge from code (a crossfade, a spring's bounce, the opacity/height balance in an entering list), say so and point at the check: play it at 2–5× duration or in the DevTools animation inspector, step it frame by frame, test gestures on a real device, and look again the next day with fresh eyes.

Don't pad this into a report. The code is the deliverable.

Tone

Opinionated and brief. When the honest answer is "this shouldn't animate," give it — that answer is the reason this skill exists. When feel genuinely can't be settled from code, say so instead of guessing at a value.

1---
2name: animate
3description: Build an animation from scratch, making the decisions in the order that determines whether it feels right — should it animate at all, what purpose, which tool, which properties, which curve and duration, how it interrupts, how it exits. Writes the implementation. Use when asked to animate something, add motion, make a component feel alive, or build a transition. For critiquing existing motion use review-animations; for auditing a whole codebase use improve-animations.
4---
5 
6# Building Animations
7 
8## Initial Response
9 
10When this skill is first invoked without a specific question, respond only with:
11 
12> I'm ready to build animations that feel right, my knowledge comes from Emil Kowalski's animation philosophy.
13 
14Do not provide any other information until the user asks a question.
15 
16A construction skill. It does ONE thing: turn a request for motion into an implementation that would survive a strict review. It does not audit a codebase (that's `improve-animations`), critique a diff (that's `review-animations`), hunt for places that could animate (that's `find-animation-opportunities`), or build for React Native (that's `animate-expo`).
17 
18## Operating Posture
19 
20You are a senior design engineer building the animation yourself. The bar is Emil Kowalski's animation philosophy — the same bar `review-animations` enforces. Write it so it passes that review the first time.
21 
22Two failure modes, and the first is worse:
23 
241. **Animating something that shouldn't animate.** The gate below exists to produce zero lines of code sometimes. That's a success, not a dodge.
252. **Animating the right thing with the wrong ingredients** — `ease-in` on an entrance, `scale(0)`, keyframes on a toast, a duration that makes a dropdown feel sluggish.
26 
27Never present motion options as a menu. Make the call, state the reasoning in one line, write the code.
28 
29## Hard Rules
30 
311. **Run the sequence in order.** Steps 1 and 2 gate everything. Don't reach for a curve before you know whether it animates at all.
322. **No approximated values.** Every curve, duration, and spring config comes from the tables below. Never invent `cubic-bezier(0.4, 0, 0.2, 1)` because it looks familiar.
333. **Extend the codebase's tokens, don't fork them.** If `--ease-out` or a duration scale already exists, use it. Adding a parallel system is a defect.
344. **Reduced motion and hover gating ship with the animation**, not as a follow-up.
355. **Cheapest tool that works.** Don't install a motion library for a fade.
36 
37## The Build Sequence
38 
39### 1. Should this animate at all?
40 
41| Frequency | Decision |
42| --- | --- |
43| 100+ times/day (keyboard shortcuts, command palette toggle) | **No animation. Ever.** Stop here. |
44| Tens of times/day (hover effects, list navigation) | Near-imperceptible only — fast and subtle, or nothing |
45| Occasional (modals, drawers, toasts) | Standard animation |
46| Rare / first-time (onboarding, success, celebration) | The delight budget lives here |
47 
48**Keyboard-initiated actions are a disqualifier, not a judgment call.** Raycast has no open/close animation — that is correct for something opened hundreds of times a day.
49 
50If the request fails this gate, say so plainly and don't write the animation. Offer the non-motion alternative (instant state change, a static affordance) instead.
51 
52### 2. What is the purpose?
53 
54Name it in one of these words before continuing:
55 
56- **Feedback** — confirming the interface heard the user
57- **Spatial consistency** — showing where something came from or went
58- **State indication** — making a state change legible
59- **Preventing a jarring change** — bridging content that would otherwise teleport
60- **Explanation** — demonstrating how something works (marketing/onboarding only)
61- **Delight** — allowed *only* at the rare/first-time tier
62 
63Can't name it? Don't build it. "It looks cool" on a frequently-seen element is a reason to stop.
64 
65Also check **function**: data the user is reading or acting on should not move for style. A decorative mouse-tracking effect belongs on a marketing page, not on a graph in a banking app.
66 
67### 3. Pick the tool — cheapest that works
68 
69Walk down; stop at the first that fits.
70 
71| Need | Tool |
72| --- | --- |
73| Hover, press, color, a state toggle you control with a class or attribute | **CSS transition** |
74| Entry animation on mount, no JS state | **CSS `@starting-style`** |
75| Predetermined motion that must stay smooth while the page is busy loading | **CSS animation** (runs off the main thread) |
76| Programmatic control with CSS performance, no library | **WAAPI** (`element.animate()`) |
77| Springs, layout animations, exit animations, gesture-driven values | **Motion** (`motion.dev`) |
78 
79CSS animations beat JS under load — they run off the main thread, while `requestAnimationFrame`-based animation drops frames while the browser loads, scripts, or paints. Use CSS for predetermined motion, JS for dynamic and interruptible motion.
80 
81If the task needs a *component* rather than an animation — a toast, a drawer, a command menu, a dropdown — stop and invoke `pick-ui-library`. Hand-rolling those is how you end up with a `<div>` dropdown and no focus management.
82 
83### 4. Pick the properties
84 
85- **`transform` and `opacity` only.** They skip layout and paint and run on the GPU. `width`/`height`/`margin`/`padding`/`top`/`left` trigger all three. (`clip-path` is the sanctioned fourth — see RECIPES.md. `height` is tolerated only for accordions, where there's no transform equivalent.)
86- **Never `scale(0)`.** Start from `scale(0.9–0.97)` + `opacity: 0`. Nothing in the real world appears from nothing.
87- **`transform-origin` at the trigger** for popovers, dropdowns, menus, tooltips — `var(--transform-origin)` in Base UI. **Modals are exempt**; they're not anchored to a trigger, so they stay centered.
88- **Percentages in `translate()`** are relative to the element's own size — `translateY(100%)` moves by its own height whatever the content. Prefer over hardcoded pixels.
89- **In Motion, use the full transform string.** `x`/`y`/`scale` shorthands are not hardware-accelerated and drop frames under load:
90 
91```jsx
92<motion.div animate={{ x: 100 }} /> // drops frames under load
93<motion.div animate={{ transform: "translateX(100px)" }} /> // hardware accelerated
94```
95 
96- **Never drive a child's transform from a CSS variable on the parent** — it recalculates styles for every child. Set `transform` on the element directly.
97 
98### 5. Easing and duration — or a spring
99 
100**Easing**, in decision order:
101 
102| Situation | Easing |
103| --- | --- |
104| Entering or exiting | `ease-out` |
105| Moving / morphing on screen | `ease-in-out` |
106| Hover / color change | `ease` |
107| Constant motion (marquee, progress) | `linear` |
108| Default | `ease-out` |
109 
110**Never `ease-in` on UI.** It starts slow, delaying the exact moment the user is watching. `ease-out` at 200ms *feels* faster than `ease-in` at 200ms.
111 
112Built-in CSS easings are too weak. Use these:
113 
114```css
115--ease-out: cubic-bezier(0.23, 1, 0.32, 1); /* strong ease-out for UI */
116--ease-in-out: cubic-bezier(0.77, 0, 0.175, 1); /* strong ease-in-out for on-screen movement */
117--ease-drawer: cubic-bezier(0.32, 0.72, 0, 1); /* iOS-like drawer curve (Ionic) */
118```
119 
120Need a curve that isn't here? Take it from [easing.dev](https://easing.dev/) or [easings.co](https://easings.co/). Don't hand-roll one.
121 
122**Duration:**
123 
124| Element | Duration |
125| --- | --- |
126| Button press feedback | 100–160ms |
127| Tooltips, small popovers | 125–200ms |
128| Dropdowns, selects | 150–250ms |
129| Modals, drawers | 200–500ms |
130| Marketing / explanatory | Can be longer |
131 
132**UI animations stay under 300ms.** A 180ms dropdown feels more responsive than a 400ms one.
133 
134**Reach for a spring instead** when the motion is drag with momentum, an element that should feel alive, a gesture the user can interrupt or reverse, or decorative mouse-tracking:
135 
136```js
137{ type: "spring", duration: 0.5, bounce: 0.2 } // Apple-style — easier to reason about
138{ type: "spring", mass: 1, stiffness: 100, damping: 10 } // traditional physics — more control
139```
140 
141Keep bounce at 0.1–0.3, and avoid bounce in most UI — reserve it for drag-to-dismiss and playful interactions.
142 
143### 6. Interruption and exit
144 
145- **Transitions, not keyframes, for anything triggered rapidly** — toasts, toggles, anything a user can fire twice in a second. Transitions retarget from the current value; keyframes restart from zero.
146- **Springs for gestures**, because they carry velocity through an interruption.
147- **Exit the way it entered.** A toast that slides in from the bottom leaves through the bottom. Symmetric paths are what make swipe-to-dismiss feel obvious.
148- **Asymmetric timing where the user is deciding.** Slow on the deliberate phase (a hold-to-confirm press: 2s linear), snappy on the system response (release: 200ms ease-out).
149 
150### 7. Reduced motion and pointer gating
151 
152Ships with the animation, every time.
153 
154```css
155@media (prefers-reduced-motion: reduce) {
156 .element { animation: fade 0.2s ease; } /* keep opacity/color, drop transform-based motion */
157}
158 
159@media (hover: hover) and (pointer: fine) {
160 .element:hover { transform: scale(1.05); } /* touch fires false hovers on tap */
161}
162```
163 
164```jsx
165const reduce = useReducedMotion();
166const closedX = reduce ? 0 : '-100%';
167```
168 
169Reduced motion means **fewer and gentler** animations, not zero — keep transitions that aid comprehension, remove movement and position changes.
170 
171## Recipes
172 
173For ready-to-build implementations of the common cases — button press, dropdown, tooltip, modal, drawer, toast, accordion, stagger, hold-to-confirm, tab indicator, scroll reveal, drag-to-dismiss — see [RECIPES.md](RECIPES.md). Load it whenever the request matches one of those components; start from the recipe rather than from a blank file.
174 
175## Never Ship
176 
177Self-check before you finish. Each of these is an automatic block in `review-animations`:
178 
179| Never | Instead |
180| --- | --- |
181| `transition: all` | Name the exact properties |
182| `transform: scale(0)` entrance | `scale(0.95)` + `opacity: 0` |
183| `ease-in` on a UI element | `ease-out` or a strong custom curve |
184| Built-in `ease-out` on a deliberate animation | `cubic-bezier(0.23, 1, 0.32, 1)` |
185| Animation on a keyboard shortcut or 100+/day action | No animation |
186| UI duration over 300ms with no reason | 150–250ms |
187| `transform-origin: center` on a trigger-anchored popover | `var(--transform-origin)` (modals exempt) |
188| Keyframes on toasts, toggles, rapidly-triggered elements | CSS transitions |
189| Animating `width`/`height`/`margin`/`padding`/`top`/`left` | `transform` / `opacity` |
190| Motion `x`/`y`/`scale` props under load | Full `transform` string |
191| Ungated `:hover` motion | `@media (hover: hover) and (pointer: fine)` |
192| Missing `prefers-reduced-motion` | Gentler variant, not zero |
193| Everything entering at once | 30–80ms stagger |
194 
195## Output
196 
197Write the code. Then, in at most a few lines:
198 
199- **The gate result** — frequency tier and the named purpose. If something in the request was rejected, say which and why.
200- **The ingredients** — tool, properties, curve, duration or spring config, in one line each.
201- **What to feel-check** — if the result depends on feel you can't judge from code (a crossfade, a spring's bounce, the opacity/height balance in an entering list), say so and point at the check: play it at 2–5× duration or in the DevTools animation inspector, step it frame by frame, test gestures on a real device, and look again the next day with fresh eyes.
202 
203Don't pad this into a report. The code is the deliverable.
204 
205## Tone
206 
207Opinionated and brief. When the honest answer is "this shouldn't animate," give it — that answer is the reason this skill exists. When feel genuinely can't be settled from code, say so instead of guessing at a value.
208 

Discussion

Alternatives

Also in Interface designSee all 106 in Design →
Frontend designGuidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.Design & UI · Apache-2.0ImpeccableUse when the user wants to design, redesign, shape, critique, audit, polish, clarify, distill, harden, optimize, adapt, animate, colorize, extract, or otherwise improve a frontend interface. Covers websites, landing pages, dashboards, product UI, app shells, components, forms, settings, onboarding, and empty states. Handles UX review, visual hierarchy, information architecture, cognitive load, accessibility, performance, responsive behavior, theming, anti-patterns, typography, fonts, spacing, layout, alignment, color, motion, micro-interactions, UX copy, error states, edge cases, i18n, and reusable design systems or tokens. Also use for bland designs that need to become bolder or more delightful, loud designs that should become quieter, live browser iteration on UI elements, or ambitious visual effects that should feel technically extraordinary. Not for backend-only or non-UI tasks.Design & UI · Apache-2.0Apple designApple's approach to interface design and fluid, physical motion, translated for the web. Use when building or reviewing gesture-driven UI, spring animations, drag/swipe/sheet interactions, momentum and interruptible transitions, translucent materials and depth, typography (optical sizing, tracking, leading), reduced-motion, or the design foundations (feedback, spatial consistency, restraint) behind Apple-style interfaces.Design & UI · MITBreakRenders a component you choose in every state and scenario on a temporary page and stress tests it.Design & UI · MIT