Open flackr opened 1 week ago
I think to handle this in a general way we should find the common ancestor scrolling container (and tree of contained scrolling containers) of all of the scroll markers in the group, and then work from the top-down to first find the active scroller, then repeat within that until you arrive at a particular marker.
To make this proposal more concrete. The proposed way to select the active marker among targets in different scrolling containers is as follows:
Define/share an algorithm for determining the active target for a list of targets in a single scroller (which as discussed in #10917 will for now will be a bit flexible), To determine the active marker, we start from the root (or the nearest ancestor scrolling container) S. Then
This defines reasonable behavior that ensures a target is only active if all of its ancestor scrolling containers to the common ancestor scroll container are also in a position to be considered active (i.e. onscreen and more closely aligned than other targets).
With
<a>
elements, it is possible to link to any content anywhere on the page. This means that we can create a scroll marker group where multiple markers might be respectively active. E.g.Nested scrollers might be used within sections of contents:
Sibling / cousin scrollers (I'm less sure of the use case but it would need a defined behavior):
In both of these cases there are many scroll markers which could be said to be
:checked
as their nearest ancestor scrolling element is currently scrolled to them.