JS Prefers reduced motion

PHOTO EMBED

Wed Dec 16 2020 23:46:53 GMT+0000 (Coordinated Universal Time)

Saved by @DBZFYAM #javascript

const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion)');

const reduceMotionChanges = () => {
  if (pefersReducedMotion.matches) {
    // Handle reduced motion
  }
}

prefersReducedMotion.addListener(reduceMotionChanges)
content_copyCOPY

https://dev.to/eevajonnapanula/you-make-my-head-spin-reducing-the-motion-on-web-328b