数学講師2862298 views
小学算数1196702 views
高校物理158628 views
世界の国561479 views
中学英語809495 views
Computer365920 views
中学数学622001 views
中学社会667457 views
教育149067 views
ヒストリア285688 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.