Conditional animations with CSS properties

Using animations, transitions and smooth scrolling is fun, but they also represent an accessibility problem. Various groups of people have a hard time using your products when things move and change all the time.

This is why operating systems have a …


This content originally appeared on DEV Community and was authored by Christian Heilmann

Using animations, transitions and smooth scrolling is fun, but they also represent an accessibility problem. Various groups of people have a hard time using your products when things move and change all the time.

This is why operating systems have a "reduced motion" setting you can turn on. Our CSS animations should respect these settings and only apply themselves when the user wants to see animations. The best way to achieve this is to wrap them in a prefers-reduced-motion media query. You can use that in various ways as described in this excellent article but they all come with the problem that you need to repeat the settings.
There is a simpler way. You can use a custom property:

@media (prefers-reduced-motion: reduce) {
  :root {
    --nomotion: none;
  }
}
html {
  scroll-behavior: var(--nomotion, smooth);
}
button {
  animation: var(--nomotion, rotate 1s infinite alternate);
}

This defines the CSS custom property nomotion as none when the user doesn't want to see any animations. If the user wants to see animations, it isn't defined and thus the CSS engine applies the fallback, which is your animation settings.

You can see this in action in this CodePen

You can test it using the reduced motion emulation in the Browser Developer Tools.

Here's a screencast showing this in action:

Demo animation showing how to use Developer tools to simulate reduced motion


This content originally appeared on DEV Community and was authored by Christian Heilmann


Print Share Comment Cite Upload Translate Updates
APA

Christian Heilmann | Sciencx (2021-03-13T10:54:50+00:00) Conditional animations with CSS properties. Retrieved from https://www.scien.cx/2021/03/13/conditional-animations-with-css-properties-2/

MLA
" » Conditional animations with CSS properties." Christian Heilmann | Sciencx - Saturday March 13, 2021, https://www.scien.cx/2021/03/13/conditional-animations-with-css-properties-2/
HARVARD
Christian Heilmann | Sciencx Saturday March 13, 2021 » Conditional animations with CSS properties., viewed ,<https://www.scien.cx/2021/03/13/conditional-animations-with-css-properties-2/>
VANCOUVER
Christian Heilmann | Sciencx - » Conditional animations with CSS properties. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/03/13/conditional-animations-with-css-properties-2/
CHICAGO
" » Conditional animations with CSS properties." Christian Heilmann | Sciencx - Accessed . https://www.scien.cx/2021/03/13/conditional-animations-with-css-properties-2/
IEEE
" » Conditional animations with CSS properties." Christian Heilmann | Sciencx [Online]. Available: https://www.scien.cx/2021/03/13/conditional-animations-with-css-properties-2/. [Accessed: ]
rf:citation
» Conditional animations with CSS properties | Christian Heilmann | Sciencx | https://www.scien.cx/2021/03/13/conditional-animations-with-css-properties-2/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.