Lazy loading images with the loading attribute
By default, the browser will download all images found on a page no matter where they are located. To improve the user experience, we often use the
Intersection Observer API or external libraries to lazy load images.
The lazy loading means that an image is only downloaded to the client when it's available in the browser's viewport.
In the latest version of Chromium-powered (including Chrome, Edge and Opera) and Firefox browsers support it natively with the `loading="lazy"`
attribute:
<img src="..." alt="..." loading="lazy" />
The browser now will defer the loading of images until they are visible in the viewport.
It's common to see that the layout is shifted when an image is loaded completely. To avoid the issue, it's recommended to set the size of image using either inline styles or the attributes:
<img loading="lazy" style="height: 200px; width: 300px;" />
<img loading="lazy" height="200" width="300" />