0

我目前正在尝试在我的网站上制作更好的响应式图像。经过一番研究,我发现了srcsetandsizes属性。

我的目标如下:

  • 当屏幕尺寸高于 600 像素或低于 300 像素时,我想提供 250x250 的图像
  • 当它介于这两个值之间时,我想提供 350x350 图像
  • 我还想要具有更高像素比的屏幕的更高分辨率图像

这就是我想出的。但它并没有像我想象的那样工作。始终提供较小的 250x250。

<img src="https://placehold.it/250"
  srcset="https://placehold.it/700 700w, https://placehold.it/500 500w, https://placehold.it/350 350w, https://placehold.it/250 250w"
   sizes="((max-width: 600px) and (min-width: 300px) and (min-resolution: 2)) 350px, (min-resolution: 2) 250px, ((max-width: 600px) and (min-width: 300px)) 350px, 250px" />

我还有一个问题:
在我的测试中,我发现在调整窗口大小以提供不同的图像时,浏览器不会加载新图像。有可能这样做吗?

4

1 回答 1

0

好的。经过一些整洁的研究后,我发现我没有sizes正确理解 - 属性。

以下是我如何实现我想要的:

<img src="https://placehold.it/250"
  srcset="https://placehold.it/700 700w, https://placehold.it/500 500w, https://placehold.it/350 350w, https://placehold.it/250 250w"
   sizes="(max-width: 600px) calc(100vw - 50px), 250px" />
于 2015-07-24T18:38:03.537 回答