File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -435,7 +435,7 @@ user has requested this at a system level.
435435
436436### Reduce Motion Features
437437
438- ##### Animations, scrolling effects, and transitions are reduced in all browsers
438+ ##### Animations, scrolling effects, transitions and view transitions are reduced in all browsers
439439
440440``` css
441441@media (prefers-reduced-motion: reduce) {
@@ -450,6 +450,10 @@ user has requested this at a system level.
450450 transition-delay : 0s !important ;
451451 transition-duration : 0s !important ;
452452 }
453+
454+ @view-transition {
455+ navigation: none !important;
456+ }
453457}
454458```
455459
Original file line number Diff line number Diff line change 33 * 2. Remove fixed background attachments when motion is reduced (opinionated).
44 * 3. Remove timed scrolling behaviors when motion is reduced (opinionated).
55 * 4. Remove transitions when motion is reduced (opinionated).
6+ * 5. Remove view-transitions when motion is reduced (opinionated).
67 */
78
89@media (prefers-reduced-motion : reduce) {
1718 transition-delay : 0s !important ; /* 4 */
1819 transition-duration : 0s !important ; /* 4 */
1920 }
21+
22+ @view-transition {
23+ navigation : none !important ; /* 5 */
24+ }
2025}
You can’t perform that action at this time.
0 commit comments