- From: Scott Kellum via GitHub <sysbot+gh@w3.org>
- Date: Thu, 03 Nov 2022 21:19:32 +0000
- To: public-css-archive@w3.org
scottkellum has just created a new issue for https://github.com/w3c/csswg-drafts: == [scroll-animations-1] Make view timeline axis values more specific == Regarding [view-timeline-axis](https://drafts.csswg.org/scroll-animations-1/#propdef-view-timeline-axis), it would be nice to see the values being more specific as to what the axis is relating to. Currently scroll is the only axis, but in the future I could imagine also creating a timeline with container inline size as the axis. As a result this feels more clear to me: ```css .element-moving-in-viewport { view-timeline-name: foo; view-timeline-axis: scroll(block); animation: scale both linear; animation-delay: enter 0%; animation-end-delay: cover 50%; animation-timeline: foo; } ``` as opposed to this: ```css .element-moving-in-viewport { view-timeline-name: foo; view-timeline-axis: block; animation: scale both linear; animation-delay: enter 0%; animation-end-delay: cover 50%; animation-timeline: foo; } ``` Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/8009 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Thursday, 3 November 2022 21:19:34 UTC