Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道我是否可以以某种方式使用 css 中的 srcset 属性来(例如)使所有图像变为 2x,它通常像这样工作
<img src="image.jpg" srcset="image.jpg 1x, higher-resolution-image.jpg 2x" >
我想知道是否有办法在 css 中使用它来使所有图像以 2x 显示提前谢谢:D
您应该会发现这篇文章很有用:
css背景图像是否有等效的srcset
它提到使用图像集:
background: -webkit-image-set( url('path/to/image') 1x, url('path/to/high-res-image') 2x );