- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Fri, 30 Dec 2022 09:47:23 +0000
- To: public-css-archive@w3.org
Editing the gif does not define "speed" in general. Let's say I have this animation with a duration of `100s`: ```css 0% { width: min-content } 10% { width: max-content } 20% { width: 20% } 30% { width: 30% } 40% { width: 40px } 50% { width: 50px } ``` The values first change discretely (NaN speed?), then there is an interpolation from `20%` to `30%` at a rate of `calc(1% / 1s)`, then a interpolation from `30%` to `40px` at a rate of, uh, `calc((4px - 3%) / 1s)`? And it goes on from `40px` to `50px` at a rate of `calc(1px / 1s)`. Please explain how you would express this in your `animation-speed` property. And this is just for a single property. -- GitHub Notification of comment by Loirooriol Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/8265#issuecomment-1367823004 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Friday, 30 December 2022 09:47:25 UTC