我想知道我是否可以以某种方式在css中使用srcset属性(例如)使所有图像2x,它通常像这样工作
<img src="image.jpg" srcset="image.jpg 1x, higher-resolution-image.jpg 2x" >
我想知道是否有一种方法可以在css中使用它来使所有图像以2x显示 提前致谢:D
答案 0 :(得分:0)
你会觉得这篇文章很有用:
Is there a srcset equivalent for css background image
提到使用图像集:
background: -webkit-image-set( url('path/to/image') 1x, url('path/to/high-res-image') 2x );