Skip to main content
WCAG success criterion · Operable

2.3.3 Animation from Interactions

Guideline 2.3 Seizures and Physical Reactions. Level AAA, part of WCAG 2.1 and later.

ADA compliance guide

What this criterion requires

Motion animation triggered by interaction (parallax, zoom transitions) can be disabled, unless the animation is essential.

Who it helps

People with vestibular disorders, for whom motion causes nausea and dizziness.

Example: fails vs passes

Fails
.hero { animation: parallax 1s linear; }  /* always on */
Passes
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    }

Vestibular disorders make motion physically sickening. Honor the OS-level reduce-motion setting.

How to meet and fix it

Common failures auditors find

Automated scanning catches a share of these instantly - run a free check - and a manual audit covers the judgement calls a tool cannot make.

Sources

Last updated . Reviewed by the EqualWeb accessibility team.

Does your site pass 2.3.3?

Run a free automated check now, or have certified IAAP/CPWA auditors test every criterion and document the result.

Book a meeting Start Free Trial