sf-lwc-motion
Installation
SKILL.md
sf-lwc-motion: Animation and Motion Design for LWC
Add purposeful, accessible motion to Lightning Web Components. Every animation must serve a functional purpose and respect user preferences.
Core Principles
- Purposeful, not decorative — animation communicates state changes, not showing off
prefers-reduced-motionis mandatory — always provide a no-animation fallback- Fast — 150-300ms for most transitions; never more than 500ms
- Only animate
transformandopacity— these are GPU-composited and performant - Ease-out for entrances, ease-in for exits — matches natural physical motion
Reduced Motion (Mandatory)
Every component with animation must include this. No exceptions.
Related skills