Remove All Animations On A Website With A CSS Media Rule

Add the following CSS rule to your sites styles to remove all animations for those users who have elected to remove them.

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0ms !important;
    transition-duration: 0ms !important;
  }
}

This really benefits users with vestibular disorders, migraines, ADHD, or motion sensitivity.

Add new comment

The content of this field is kept private and will not be shown publicly.