Skip to content

Instantly share code, notes, and snippets.

@nocodesupplyco
Created December 16, 2022 14:57
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 nocodesupplyco/82bdd797c2d0c4d1a3a6ae9b89c03441 to your computer and use it in GitHub Desktop.
Save nocodesupplyco/82bdd797c2d0c4d1a3a6ae9b89c03441 to your computer and use it in GitHub Desktop.
@media Prefers Reduced Motion
/*example motion*/
animation: wobbley 1s linear infinite;
@media (prefers-reduced-motion: reduce) {
/*example motion altered for reduced preference*/
animation: cross-fade 3s ease-in-out infinite;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment