knowledge/Lazy loading images in HTML.md
Marco D'Agostini 18c3fc888e Added tags
2020-09-30 19:27:01 -05:00

684 B

tags
knowledge, frontend

Lazy loading images in HTML

To implement Lazy Loading to an <img ... > tag, add the attribute 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