小学理科716917 views
中学理科1625756 views
中学社会666920 views
LaTeX956652 views
英語606840 views
Computer364642 views
高校倫理1432233 views
ヒストリア282760 views
世界の国559994 views
数学講師2847003 views

JavaScript Lecture

Help
Tools

English

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.