Overview
Users with vestibular disorders or motion sensitivities may have 'Reduce Motion' enabled in their OS. All animations should be disabled or simplified for these users.
Animations to Address
- Lottie spinner animation
- Lottie upload animation
- Lottie success animation
- CSS transitions on buttons/hover
- Any page scroll animations
Implementation
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}
Plus: pause Lottie when reduced motion detected.
Acceptance Criteria
Overview
Users with vestibular disorders or motion sensitivities may have 'Reduce Motion' enabled in their OS. All animations should be disabled or simplified for these users.
Animations to Address
Implementation
Plus: pause Lottie when reduced motion detected.
Acceptance Criteria