Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active January 18, 2022 01:21
Show Gist options
  • Save vanaf1979/b0d10bbf6a5bb4b4a92958aa25a7b36f to your computer and use it in GitHub Desktop.
Save vanaf1979/b0d10bbf6a5bb4b4a92958aa25a7b36f to your computer and use it in GitHub Desktop.
// Grab the prefers reduced media query.
const mediaQuery = window.matchMedia("(prefers-reduced-motion: reduce)");
// Check if the media query matches or is not available.
if (!mediaQuery || mediaQuery.matches) {
doSomethingWithoutAnimation();
} else {
doSomethingWithAnimation();
}
// Ads an event listener to check for changes in the media query's value.
mediaQuery.addEventListener("change", () => {
if (mediaQuery.matches) {
doSomethingWithoutAnimation();
} else {
doSomethingWithAnimation();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment