Path: blob/main/files/en-us/web/css/@media/prefers-reduced-motion/index.md
6548 views
------{{CSSRef}}
Warning: An embedded example at the bottom of this page has a scaling movement that may be problematic for some readers. Readers with vestibular motion disorders may wish to enable the reduce motion feature on their device before viewing the animation.
The prefers-reduced-motion CSS media feature is used to detect if the user has requested that the system minimize the amount of non-essential motion it uses.
Syntax
no-preference: Indicates that the user has made no preference known to the system.
reduce: Indicates that user has notified the system that they prefer an interface that removes or replaces the types of motion-based animation that trigger discomfort for those with vestibular motion disorders.
User preferences
For Firefox, the reduce request is honoured if:
In GTK/GNOME: GNOME Tweaks > General tab (or Appearance, depending on version) > Animations is turned off.
Alternatively, add
gtk-enable-animations = falseto the[Settings]block of the GTK 3 configuration file.
In Plasma/KDE: System Settings > Workspace Behavior -> General Behavior > "Animation speed" is set all the way to right to "Instant".
In Windows 10: Settings > Ease of Access > Display > Show animations in Windows.
In Windows 11: Settings > Accessibility > Visual Effects > Animation Effects
In macOS: System Preferences > Accessibility > Display > Reduce motion.
In iOS: Settings > Accessibility > Motion.
In Android 9+: Settings > Accessibility > Remove animations.
In Firefox
about:config: Add a number preference calledui.prefersReducedMotionand set its value to either0for full animation or to1to indicate a preference for reduced motion. Changes to this preference take effect immediately.
Examples
This example has a scaling animation by default. If Reduce Motion is enabled in your accessibility preferences, the animation is toned down to a simple dissolve without vestibular motion triggers.
HTML
CSS
Result
{{EmbedLiveSample("Examples")}}
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}
See also
An Introduction to the Reduced Motion Media Query (CSS Tricks)
Responsive Design for Motion (WebKit Blog) includes vestibular motion trigger examples.