In plain English
Big motion effects that fire as you scroll, parallax, elements flying in, dramatic zooms, can make people with inner-ear (vestibular) disorders feel genuinely dizzy or sick. This AAA rule says let people turn that motion off (as long as it is decorative, not essential).
The clean way to do it is to respect the visitor’s system-level “reduce motion” setting, which the browser exposes to your CSS.
Who this is for
- People with vestibular disorders, who get dizziness or nausea from large motion.
- People prone to motion sickness generally.
How to check and fix it yourself
If your theme uses parallax or heavy scroll animation, wrap it so it stops when “reduce motion” is on.
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation: none !important;
transition: none !important;
scroll-behavior: auto !important;
}
}
Where we can help
We check whether your store honours the reduce-motion setting or forces animation on everyone, and flag scroll effects that need a switch. It is one of the newer WCAG 2.1/2.2 checks that flashy themes often miss.