Re: [csswg-drafts] [scroll-animations-1] Transition delays in scroll-linked animations (#7059)

So to put it in more concrete terms, would the author create a new timeline which modifies an existing one? E.g. You might create something like a `DelayedTimeline` which sourced another timeline:

```js
element.animate(parallaxKeyframes, {
  timeline: new DelayedTimeline(new ScrollTimeline(), {ease: 'ease'})
});
```

or in css:

```css
#target {
  animation: parallax delayed(scroll() 500ms ease);
}
```

-- 
GitHub Notification of comment by flackr
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7059#issuecomment-1206561451 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Friday, 5 August 2022 15:06:20 UTC