Created
August 8, 2021 01:13
-
-
Save petercr/231516503693cbf238f5bf7e1d919812 to your computer and use it in GitHub Desktop.
A CSS Prefers Reduced Motion Media Query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.fun-animation { | |
animation: 3s linear 1s infinite running slidein; | |
} | |
/* Here's where we turn the animation off */ | |
@media (prefers-reduced-motion) { | |
.fun-animation { | |
animation-name: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment