jerry-604 / swarthmore-a11ygator

https://swarthmore-a11ygator.vercel.app
0 stars 0 forks source link

Accessibility issue: Video autoplays #2

Open JenM00re opened 5 months ago

JenM00re commented 5 months ago

Accessibility issue with videos: should not / cannot autoplay I think this is the documentation: Understanding Success Criterion 2.3.3: Animation from Interactions | WAI | W3C]

JenM00re commented 5 months ago

Tony suggested the media css prefers reduced motion.

So, it'll be similar to the code from the other issue:

@media (prefers-color-scheme: dark) {
body { /* Light text on dark background */
color: #ffffff;
background-color: #222222;
}
}