What problem does it solve?
It helps you build correct, maintainable animations with Anime.js v4 while preventing common breakages from mismatched APIs, missing teardown, and incorrect animation-surface choices.
Core Features & Use Cases
- v3-to-v4 migration guidance: Update imports and property/callback names while preserving behavior and direction semantics.
- Animation-surface selection: Choose the narrowest Anime.js API for DOM/CSS motion, timelines, staggered lists, scroll-linked motion, text splitting, SVG drawing/path/morphing, draggable behavior, layout transitions, and imperative frame updates.
- Teardown-safe integration: Use scope patterns, cleanup paths (including revert for splitText/scopes), and SSR/mobile-friendly guardrails to avoid leaks and broken unmounts.
- WAAPI vs JS tradeoffs: Pick
waapi.animate() only when it matches performance or payload constraints, otherwise prefer JS-driven control.
Quick Start
Use the animejs skill to migrate an existing anime.js v3 animation to Anime.js v4 and refactor it to the smallest correct API surface while ensuring proper cleanup on unmount.