animate

Xây dựng một hoạt ảnh từ đầu, đưa ra các quyết định theo thứ tự quyết định liệu nó có cảm giác đúng hay không — liệu nó có nên hoạt ảnh không, mục đích gì, công cụ nào, thuộc tính nào, đường cong và thời lượng nào, cách nó ngắt quãng, cách nó thoát. Viết phần triển khai. Sử dụng khi được yêu cầu tạo hoạt ảnh cho một thứ gì đó, thêm chuyển động, làm cho một thành phần trở nên sống động, hoặc xây dựng một chuyển tiếp. Để phê bình chuyển động hiện có, sử dụng review-animations; để kiểm tra toàn bộ mã nguồn, sử dụng improve-animations.

npx skills add https://github.com/emilkowalski/skills --skill animate

Building Animations

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 ingredientsease-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?

FrequencyDecision
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.

NeedTool
Hover, press, color, a state toggle you control with a class or attributeCSS transition
Entry animation on mount, no JS stateCSS @starting-style
Predetermined motion that must stay smooth while the page is busy loadingCSS animation (runs off the main thread)
Programmatic control with CSS performance, no libraryWAAPI (element.animate())
Springs, layout animations, exit animations, gesture-driven valuesMotion (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:

SituationEasing
Entering or exitingease-out
Moving / morphing on screenease-in-out
Hover / color changeease
Constant motion (marquee, progress)linear
Defaultease-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:

ElementDuration
Button press feedback100–160ms
Tooltips, small popovers125–200ms
Dropdowns, selects150–250ms
Modals, drawers200–500ms
Marketing / explanatoryCan 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:

NeverInstead
transition: allName the exact properties
transform: scale(0) entrancescale(0.95) + opacity: 0
ease-in on a UI elementease-out or a strong custom curve
Built-in ease-out on a deliberate animationcubic-bezier(0.23, 1, 0.32, 1)
Animation on a keyboard shortcut or 100+/day actionNo animation
UI duration over 300ms with no reason150–250ms
transform-origin: center on a trigger-anchored popovervar(--transform-origin) (modals exempt)
Keyframes on toasts, toggles, rapidly-triggered elementsCSS transitions
Animating width/height/margin/padding/top/lefttransform / opacity
Motion x/y/scale props under loadFull transform string
Ungated :hover motion@media (hover: hover) and (pointer: fine)
Missing prefers-reduced-motionGentler variant, not zero
Everything entering at once30–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.

Thêm skills từ emilkowalski

find-animation-opportunities
emilkowalski
Tìm kiếm trong mã nguồn hoặc giao diện người dùng những chỗ chưa có hoạt ảnh nhưng nên có, và loại bỏ mọi thứ không nên. Chỉ đọc; nó đề xuất chuyển động với giá trị chính xác, không triển khai. Dùng khi người dùng hỏi "chỗ nào có thể thêm hoạt ảnh ở đây?" hoặc muốn "làm cho nó sống động hơn". Để sửa hoạt ảnh hiện có, hãy dùng improve-animations hoặc review-animations thay thế.
developmentdesigncreative
pick-ui-library
emilkowalski
Chọn thư viện phù hợp cho một tác vụ frontend cụ thể từ danh sách được tuyển chọn, có chủ kiến — số, ô nhập OTP, biểu đồ, menu lệnh, ảo hóa, kéo và thả, thông báo toast, trạng thái, định kiểu, và hơn thế nữa. Chỉ chạy khi được gọi một cách tường minh; nó không tự kích hoạt.
prototype
emilkowalski
Xây dựng nhiều phiên bản thực sự khác nhau của một phần giao diện bạn mô tả, hiển thị phía sau một bộ chọn trực quan để bạn có thể lướt qua chúng theo thời gian thực và chọn ra phiên bản phù hợp nhất. Chỉ chạy khi được gọi một cách tường minh; nó không tự động kích hoạt.
developmentdesigncreative
ask-sonner
emilkowalski
Hướng dẫn về Sonner, thư viện toast của React — cài đặt và kết nối Toaster, chọn đúng lệnh gọi toast(), toast promise và loading, cập nhật, đóng và duy trì toast, tạo kiểu, chủ đề và biểu tượng, định vị và nhiều toaster. Sử dụng khi làm việc với Sonner hoặc khắc phục sự cố — toast không xuất hiện, xuất hiện hai lần, mất kiểu dáng, bỏ qua lớp Tailwind, nằm sau modal, hoặc không theo chế độ tối.
emil-design-eng
emilkowalski
Kỹ năng này mã hóa triết lý của Emil Kowalski về sự tinh tế trong giao diện người dùng, thiết kế thành phần, quyết định về hoạt ảnh và những chi tiết vô hình giúp phần mềm trở nên tuyệt vời.
designdevelopmentcreative
review-animations
emilkowalski
Xem xét mã hoạt ảnh và chuyển động dựa trên tiêu chuẩn thủ công cao lấy từ triết lý kỹ thuật thiết kế của Emil Kowalski. Mặc định là gắn cờ; sự chấp thuận phải được kiếm được.
animation-vocabulary
emilkowalski
Từ điển tra ngược giúp chuyển đổi mô tả mơ hồ về một hiệu ứng hoạt hình hoặc chuyển động trên web thành thuật ngữ chính xác ("hiệu ứng nảy khi cửa sổ popover mở ra" → Pop in; "hiệu ứng cuộn đàn hồi kiểu iOS" → Rubber-banding). Sử dụng khi người dùng hỏi "hiệu ứng đó gọi là gì khi…", hoặc mô tả một hiệu ứng chuyển động mà không biết tên của nó và muốn có từ ngữ chính xác để gợi ý cho AI hoặc nhà thiết kế. Dùng để đặt tên cho hiệu ứng, không phải để thiết kế hay xây dựng hiệu ứng.
creativedesignresearch
improve-animations
emilkowalski
Khảo sát mã nguồn hoạt ảnh và chuyển động của một codebase với tư cách cố vấn chuyển động cấp cao, sau đó tạo ra một bản kiểm toán ưu tiên và các kế hoạch triển khai độc lập để các tác nhân khác (hoặc các mô hình rẻ hơn) thực thi. Chỉ đọc mã nguồn — nó lập kế hoạch cải tiến, không áp dụng chúng. Sử dụng khi người dùng yêu cầu "cải thiện hoạt ảnh", "kiểm toán chuyển động", "làm cho ứng dụng này cảm thấy tốt hơn", hoặc muốn một lộ trình sửa lỗi hoạt ảnh thay vì đánh giá một bản diff đơn lẻ.