You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because we are currently using the scroll event to track the vertical position of components. I figured the Intersection Observer may seem more fitting for this purpose.
The Intersection Observer is perfect for these purposes:
Image lazy loading
Infinite scroll
Launching actions based on viewport visibility
Since it handles component positioning asynchronously it may boost performance quite a bit :)
The text was updated successfully, but these errors were encountered:
definitely worth looking into, need to test how accurate it is and wether it covers all of our current functionalities such as providing a threshold per component.
Because we are currently using the
scroll
event to track the vertical position of components. I figured the Intersection Observer may seem more fitting for this purpose.The Intersection Observer is perfect for these purposes:
Since it handles component positioning asynchronously it may boost performance quite a bit :)
The text was updated successfully, but these errors were encountered: