Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 523 Bytes

3.3.7 img loading.md

File metadata and controls

29 lines (21 loc) · 523 Bytes

3.3.7 img loading

兼容性依然有问题,不过已经有兼容原生的懒加载loading属性的垫片库了

使用

<img src="./example.jpg" loading="lazy" alt="lazy loading">

垫片库使用

<noscript class="loading-lazy">
	<img
		src="simpleimage.jpg"
		loading="lazy"
		alt=".."
		width="250"
		height="150"
	/>
</noscript>

参考