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
IntersectionObserver is a performant way to detect if an element is inside the viewport or not.
react-lazy-load-image-component should use that instead of some complex computations with the element position and the scroll position of the window to detect if the element is visible or not.
This must be implemented in a form that it fallbacks to the element position computations for browsers that don't support IntersectionObserver.
The text was updated successfully, but these errors were encountered:
IntersectionObserver is a performant way to detect if an element is inside the viewport or not.
react-lazy-load-image-component
should use that instead of some complex computations with the element position and the scroll position of the window to detect if the element is visible or not.This must be implemented in a form that it fallbacks to the element position computations for browsers that don't support IntersectionObserver.
The text was updated successfully, but these errors were encountered: