LaTeX958874 views
高校生物550414 views
Computer366298 views
中学数学622271 views
高校化学2916692 views
小学社会309069 views
中学英語809923 views
ヒストリア286524 views
世界の国561912 views
小学理科718157 views

JavaScript Lecture

Lazy Loading in HTML img tag

The loading attribute in the __img__ tag is used to control how and when images are loaded on a webpage.
<img src="image.jpg" loading="lazy">

When an image has the loading=“lazy” attribute, the browser will defer loading the image until it is near the viewport.

This is especially useful for pages with many images that are not immediately visible. It helps reduce initial page load time and saves bandwidth, as images below the fold (the part of the page not initially visible) are not loaded until needed.