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
Middleware feature that will help improve page load time: Lazy Loading — delay the loading of images in long web pages. Images outside of the viewport will not be loaded until the user scrolls to them.
Replace src's with data-image-src tags. Use the IntersectionObserver API to observe when images enter the browsers viewport. When an image comes into view, switch back to src.
For background images, grab their url's and hide/store until image comes into view.
I can get started on this if we think it's a good feature to add.
Middleware feature that will help improve page load time: Lazy Loading — delay the loading of images in long web pages. Images outside of the viewport will not be loaded until the user scrolls to them.
Replace
src's withdata-image-srctags. Use theIntersectionObserverAPI to observe when images enter the browsers viewport. When an image comes into view, switch back tosrc.For background images, grab their url's and hide/store until image comes into view.
I can get started on this if we think it's a good feature to add.