Overview
Users who have enabled 'Reduce Motion' in their OS accessibility settings should not see the Lottie animations spinning or playing, as animations can cause discomfort for people with vestibular disorders.
Implementation
In src/components/LottiePlayer.tsx:
const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)').matches
if (prefersReducedMotion) {
// Show static frame instead of animation
anim.goToAndStop(1, true)
}
Acceptance Criteria
Overview
Users who have enabled 'Reduce Motion' in their OS accessibility settings should not see the Lottie animations spinning or playing, as animations can cause discomfort for people with vestibular disorders.
Implementation
In
src/components/LottiePlayer.tsx:Acceptance Criteria