Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
March 13, 2021 10:54 am GMT

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 "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


Original Link: https://dev.to/codepo8/conditional-animations-with-css-properties-2kge

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To