中学数学622641 views
LaTeX959780 views
英語610986 views
雑学1473194 views
小学算数1198314 views
MathPython494778 views
世界の国562648 views
中学社会667787 views
中学理科1628828 views
高校物理159140 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.