Direct link to the article No Motion Isn’t Always prefers-reduced-motion

No Motion Isn’t Always prefers-reduced-motion

There is a code snippet that I see all the time when the media query prefers-reduced-motion is talked about. Here it is:

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  
Avatar of Chris Coyier
Chris Coyier on
Direct link to the article Weekly Platform News: Reduced Motion, CORS, WhiteHouse.gov, popups, and 100vw

Weekly Platform News: Reduced Motion, CORS, WhiteHouse.gov, popups, and 100vw

In this week’s roundup, we highlight a proposal for a new <popup> element, check the use of prefers-reduced-motion on award-winning sites, learn how to opt into cross-origin isolation, see how WhiteHouse.gov approaches accessibility, and warn the dangers of 100vh.…

Avatar of Šime Vidas
Šime Vidas on (Updated on )
Direct link to the article The Web in 2020: Extensibility and Interoperability

The Web in 2020: Extensibility and Interoperability

In the past few years, we’ve seen a lot of change and diversion in regard to web technologies. In 2020, I foresee us as a web community heading toward two major trends/goals: extensibility and interoperability. Let’s break those down.…

Avatar of Una Kravets
Una Kravets on (Updated on )
Direct link to the article Revisiting prefers-reduced-motion, the reduced motion media query

Revisiting prefers-reduced-motion, the reduced motion media query

Two years ago, I wrote about prefers-reduced-motion, a media query introduced into Safari 10.1 to help people with vestibular and seizure disorders use the web. The article provided some background about the media query, why it was needed, and …

Avatar of Eric Bailey
Eric Bailey on (Updated on )