jesusbotella/ngx-lazy-load-images

Doubt

vivek1996 opened this issue · 2 comments

Can this lazy-load can be used to lazy load the content as it approaches the viewport ( when the size of the content very large ) Like this
image

I am not sure about what you consider content, you can only lazy load images with this plugin.
It uses the IntersectionObserver API included in the browser to observe when images are visible in the viewport to load it.

If you want to lazy load any type of content is better to look for infinite scrolling modules that will allow you to do that, rather than image lazy loading modules. ;)

Thankyou...