animationsVercel
Implementation Preference
SHOULD
SHOULD: Prefer CSS > Web Animations API > JS libraries
Prefer CSS over Web Animations API over JavaScript libraries
Bad
Good
Why it matters
CSS animations run off the main thread and are most performant. Web Animations API provides more control when needed. JavaScript animation libraries should be a last resort as they run on the main thread and can block user interactions.
References