flackr / scroll-timeline

A polyfill of ScrollTimeline.
Apache License 2.0
951 stars 92 forks source link

Prevent ViewTimeline from being initialized as ScrollTimeline first #246

Open johannesodland opened 7 months ago

johannesodland commented 7 months ago

ViewTimeline inherits from ScrollTimeline and invokes the ScrollTimeline constructor first during initialization. As a result, the timeline is initialized with document.scrollingElement as the source first, including measuring the source, setting up a scroll listener, ResizeObserver and MutationObserver.

This PR splits initialization of ScrollTimeline and ViewTimeline, preventing source from being initialized multiple times.