实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>html img loading 实例 - 自学教程(runoops.com)</title> </head> <body> <img src="//demo.runoops.com/static/img/wedding.jpeg" alt="Wedding" style="width:100%"> <img src="//demo.runoops.com/static/img/rocks.jpeg" alt="Rocks" style="width:100%"> <!-- 设置延迟加载的图片 --> <img src="//demo.runoops.com/static/img/paris.jpeg" alt="Paris" style="width:100%" loading="lazy"> <img src="//demo.runoops.com/static/img/a1.jpg" alt="Nature" style="width:100%" loading="lazy"> <img src="//demo.runoops.com/static/img/a2.jpg" alt="Underwater" style="width:100%" loading="lazy"> <img src="//demo.runoops.com/static/img/a3.jpg" alt="Ocean" style="width:100%" loading="lazy"> <img src="//demo.runoops.com/static/img/a4.jpg" alt="Mountains" style="width:100%" loading="lazy"> </body> </html>
运行结果: