knowledge/Lazy loading images in HTML.md
2020-09-24 19:49:16 -05:00

641 B

Lazy loading images in HTML

To implement Lazy Loading to an <img ... > tag, add the attrbitue loading=lazy

<img loading=lazy ... >

This will load the image when scrolling is near the viewport, using the Intersection Observer API

Further reading

What led to learning this