Skip to content

Instantly share code, notes, and snippets.

@itsmattsoria
Last active October 8, 2024 15:58
Show Gist options
  • Save itsmattsoria/0715ff2e8cf301a107c8f043a987d617 to your computer and use it in GitHub Desktop.
Save itsmattsoria/0715ff2e8cf301a107c8f043a987d617 to your computer and use it in GitHub Desktop.
Disable transitions when prefers-reduced-motion is enabled.
/* Remove animations and transitions for people who prefer not to see them */
@media screen and (prefers-reduced-motion: reduce), (update: slow) {
* {
background-attachment: initial !important;
animation-duration: 0.001ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.001ms !important;
scroll-behavior: auto !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment