Manuals / Motion for Product / Chapter 6
B · Patterns · intermediate · ~30 min · Chapter 6 of 9
Accessibility & performance
prefers-reduced-motion is mandatory. Vestibular triggers (large zooms, parallax) can harm. Prefer transform/opacity for perf.
Respect reduced motion
Replace motion with instant state or simplified fade.
Respect reduced motionDrag stickies · tap for tips
Example
@media (prefers-reduced-motion: reduce) {
* {
animation: none !important;
transition: none !important;
}
}
Do this now
Add a reduced-motion variant to one prototype or CSS snippet.
Was this step clear?
Chapter learning outcomes
- Reduced motion
- Vestibular safety
- Compositor-friendly props
Clear these before you leave