Skip to content

Instantly share code, notes, and snippets.

@petercr
Created August 8, 2021 01:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petercr/231516503693cbf238f5bf7e1d919812 to your computer and use it in GitHub Desktop.
Save petercr/231516503693cbf238f5bf7e1d919812 to your computer and use it in GitHub Desktop.
A CSS Prefers Reduced Motion Media Query
.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