File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -388,6 +388,23 @@ But if it doesn't,
388388it also doesn't add them to animated images which are meaningful parts of the content,
389389since it doesn't reliably know which is which.
390390
391+ In a browser where ` image-animation ` is implemented,
392+ this UI setting could continue to exist,
393+ possibly implemented in different ways.
394+ The most blunt way is to simply make all images non animated when the setting is on,
395+ leaving the CSS property nothing to usefully take effect on.
396+ More interestingly, the setting could be reinterpreted in terms of the CSS property,
397+ ``` css
398+ @media (prefers-reduced-motion) {
399+ * ,
400+ * ::before ,
401+ * ::after ,
402+ * ::marker {
403+ image-animation : controlled !important ;
404+ }
405+ }
406+ ```
407+
391408### Reuse the Existing ` animation-* ` Properties
392409Properties like ` animation-play-state: running | paused `
393410or ` animation-iteration-count: infinite | <number [0,∞]> `
You can’t perform that action at this time.
0 commit comments