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