knowledge/img lazy loading in html.md
2020-07-28 17:42:47 -05:00

576 B

img lazy loading 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