如何根据屏幕尺寸预加载正确数量的图像?

How can I preload correct number of images based on screen size?

我正在努力优化 Largest Contentful Paint (LCP),但无法根据设备大小预加载正确数量的 LCP 候选图像。

问题:

所需的解决方案:

我的第一个想法很明显,使用 link els 的 media 属性来决定加载什么;然而,无论如何,所有资源都会被下载(refs 1, 2)。

我不喜欢我目前最好的 'solution':无论如何,使用 linkimagesrcset + imagesizes 属性加载第一张图片,后者在小型设备上显示为 1px x 1px。

例如

<link 
  rel="preload" 
  as="image" 
  href="image1" 
  imagesrcset="image1-small 100w 200h,image1-large 200w 400h" 
  imagesizes="(max-width: 40em) 100vw, 400px"
>

<link 
  rel="preload" 
  as="image" 
  href="image2" 
  imagesrcset="image2-tiny 1w 1h, image2-small 100w 200h,image2-large 200w 400h" 
  imagesizes="(max-width: 40em) 1px, 400px"
>

显然很老套。有 'correct' 的方法吗?我错过了什么吗?

因此,它使用 media 属性用于 type="image" link 属性 工作。

学到的教训总是测试我阅读的内容:)

因此,以下工作可以解决手头的问题:

<link 
  rel="preload" 
  as="image" 
  href="image1" 
  imagesrcset="image1-small 100w 200h, image1-large 200w 400h" 
  imagesizes="(max-width: 40em) 100vw, 400px"
>

<link 
  rel="preload" 
  as="image" 
  href="image2" 
  imagesrcset="image2-small 100w 200h, image2-large 200w 400h" 
  imagesizes="400px"
  media="(min-width: 40em)"
>