我喜欢使用srcset
来定义响应式图像。我们在picture
和img
:
<picture>
<source srcset='myimage-large.svg' media='(min-width: 1000px)'>
<source srcset='myimage-small.svg' media='(min-width: 600px)'>
<img src='myimage.svg'>
</picture>
它运作良好,但我必须与svg图像进行交互。所以object
将是最好的解决方案。但是在这种情况下我该怎么办srcset
呢?