Web Dev/8. 메모
img Lazy loading: loading="lazy" 옵션을 사용하자
hYhY1234
2021. 2. 26. 13:42
728x90
img lazy loading을 구현하기 위해서 별의별 기법을 다 써보곤 했는데, 브라우저 단에서 아주 잘 지원하고 있다. (크롬 기준)
web.dev/browser-level-image-lazy-loading/
Browser-level image lazy-loading for the web
This post covers the loading attribute and how it can be used to control the loading of images.
web.dev
<img src="image.png" loading="lazy" alt="…" width="200" height="200">