uxweb-dev
Lazy Loading
Lazy loading is a performance optimization technique that defers loading of non-critical resources until they are actually needed — typically when they enter the viewport. It is commonly applied to images, videos, and below-the-fold components to speed up initial page load. Modern browsers support native lazy loading via the loading="lazy" attribute, while JavaScript-based solutions offer more control through Intersection Observer.
#ux#web-dev