- From: Robert Flack via GitHub <sysbot+gh@w3.org>
- Date: Sat, 17 Sep 2022 12:51:38 +0000
- To: public-css-archive@w3.org
Can we use this proposal to simplify the lookup of animation-timeline even further? I.e. if we can declare names on an ancestor and bind them later then we don't need the previous sibling lookup right? Just to make sure I understand this proposal fully is this something like:
```html
<style>
#parent {
scroll-timeline-name: scroller;
scroll-timeline-attachment: defer;
}
#scroller {
scroll-timeline-name: scroller;
scroll-timeline-attachment: ancestor;
}
#animated {
animation-timeline: scroller;
}
</style>
<div id="parent">
<div>
<div id="animated"></div>
</div>
<div id="scroller"></div>
</div>
```
--
GitHub Notification of comment by flackr
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7759#issuecomment-1250065903 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Saturday, 17 September 2022 12:51:40 UTC