File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -435,7 +435,7 @@ user has requested this at a system level.
435
435
436
436
### Reduce Motion Features
437
437
438
- ##### Animations, scrolling effects, and transitions are reduced in all browsers
438
+ ##### Animations, scrolling effects, transitions and view transitions are reduced in all browsers
439
439
440
440
``` css
441
441
@media (prefers-reduced-motion: reduce) {
@@ -450,6 +450,10 @@ user has requested this at a system level.
450
450
transition-delay : 0s !important ;
451
451
transition-duration : 0s !important ;
452
452
}
453
+
454
+ @view-transition {
455
+ navigation: none !important;
456
+ }
453
457
}
454
458
```
455
459
Original file line number Diff line number Diff line change 3
3
* 2. Remove fixed background attachments when motion is reduced (opinionated).
4
4
* 3. Remove timed scrolling behaviors when motion is reduced (opinionated).
5
5
* 4. Remove transitions when motion is reduced (opinionated).
6
+ * 5. Remove view-transitions when motion is reduced (opinionated).
6
7
*/
7
8
8
9
@media (prefers-reduced-motion : reduce) {
17
18
transition-delay : 0s !important ; /* 4 */
18
19
transition-duration : 0s !important ; /* 4 */
19
20
}
21
+
22
+ @view-transition {
23
+ navigation : none !important ; /* 5 */
24
+ }
20
25
}
You can’t perform that action at this time.
0 commit comments