<picture>元素与<source>元素
例如需要分别在小于640px 大于640px 小于960px 和 大于960px的3个区域内使用small.jpg medium.jpg large.jpg可以这么编码
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <meta http-equiv="X-UA-Compatible" content="ie=edge"> 7 <title>响应式图片</title> 8 </head> 9 <body> 10 <picture> 11 <source media="(max-width:640px)" srcset="[email protected] 2x, small.jpg 1x"/> 12 <source media="(max-width:960px)" srcset="[email protected] 2x, medium.jpg 1x"/> 13 <source srcset="[email protected] 2x, large.jpg 1x"/> 14 <img src="small.jpg" alt=""> 15 </picture> 16 </body> 17 </html>
分析
max-width:640px 表示页面不足640px
[email protected] 2x, small.jpg 1x 告诉浏览器该来源为同一素材提供了两种清晰度的版本
时间: 2024-11-04 21:30:21