我有一个用于图像艺术指导的像素。标签中有媒体查询和srcset属性,它们指定要使用的图像,但是由于某种原因,我的最小宽度:992px查询被忽略了。
我尝试过几次重新格式化代码,以查看查询的顺序是否是问题所在,并且我检查了图像是否存在。
我希望看到图像的最大宽度575的长宽比为5:4,对于576-991的长宽比为3:1,然后对于992和更高的长宽比为4:1。 575及以下版本工作正常,而576-991正确,但3:1图像在992及以上版本中仍然可以使用。我看过代码,但没有发现任何错误。我也通过验证器运行它,没有问题。谁能帮我弄清楚为什么最小宽度:992px媒体查询被忽略了吗?
<picture class="banner-image" >
<source media="(max-width: 575px)" srcset="http://myhy.build/uploads/img/_576x460_crop_center-center_30_line/storyheader.jpg 576w, http://myhy.build/uploads/img/_1152x921_crop_center-center_22_line/storyheader.jpg 1152w, http://myhy.build/uploads/img/_1728x1382_crop_center-center_15_line/storyheader.jpg 1728w, http://myhy.build/uploads/img/_375x300_crop_center-center_30_line/storyheader.jpg 375w, http://myhy.build/uploads/img/_750x600_crop_center-center_22_line/storyheader.jpg 750w, http://myhy.build/uploads/img/_1125x900_crop_center-center_15_line/storyheader.jpg 1125w"
sizes="100vw"
class="banner-image" />
<source media="(max-width: 575px)" srcset="http://myhy.build/uploads/img/_576x460_crop_center-center_30_line/storyheader.jpg.webp 576w, http://myhy.build/uploads/img/_1152x921_crop_center-center_22_line/storyheader.jpg.webp 1152w, http://myhy.build/uploads/img/_1728x1382_crop_center-center_15_line/storyheader.jpg.webp 1728w, http://myhy.build/uploads/img/_375x300_crop_center-center_30_line/storyheader.jpg.webp 375w, http://myhy.build/uploads/img/_750x600_crop_center-center_22_line/storyheader.jpg.webp 750w, http://myhy.build/uploads/img/_1125x900_crop_center-center_15_line/storyheader.jpg.webp 1125w"
sizes="100vw"
type="image/webp" class="banner-image" />
<source media="(min-width: 576px)" srcset="http://myhy.build/uploads/img/_768x256_crop_center-center_60_line/storyheader.jpg 768w, http://myhy.build/uploads/img/_1536x512_crop_center-center_45_line/storyheader.jpg 1536w, http://myhy.build/uploads/img/_2304x768_crop_center-center_30_line/storyheader.jpg 2304w, http://myhy.build/uploads/img/_576x192_crop_center-center_60_line/storyheader.jpg 576w, http://myhy.build/uploads/img/_1152x384_crop_center-center_45_line/storyheader.jpg 1152w, http://myhy.build/uploads/img/_1728x576_crop_center-center_30_line/storyheader.jpg 1728w"
sizes="100vw"
class="banner-image" />
<source media="(min-width: 576px)" srcset="http://myhy.build/uploads/img/_768x256_crop_center-center_60_line/storyheader.jpg.webp 768w, http://myhy.build/uploads/img/_1536x512_crop_center-center_45_line/storyheader.jpg.webp 1536w, http://myhy.build/uploads/img/_2304x768_crop_center-center_30_line/storyheader.jpg.webp 2304w, http://myhy.build/uploads/img/_576x192_crop_center-center_60_line/storyheader.jpg.webp 576w, http://myhy.build/uploads/img/_1152x384_crop_center-center_45_line/storyheader.jpg.webp 1152w, http://myhy.build/uploads/img/_1728x576_crop_center-center_30_line/storyheader.jpg.webp 1728w"
sizes="100vw"
type="image/webp" class="banner-image" />
<source media="(min-width: 992px)" srcset="http://myhy.build/uploads/img/_1200x300_crop_center-center_82_line/storyheader.jpg 1200w, http://myhy.build/uploads/img/_2400x600_crop_center-center_61_line/storyheader.jpg 2400w, http://myhy.build/uploads/img/_3600x900_crop_center-center_41_line/storyheader.jpg 3600w, http://myhy.build/uploads/img/_992x248_crop_center-center_82_line/storyheader.jpg 992w, http://myhy.build/uploads/img/_1984x496_crop_center-center_61_line/storyheader.jpg 1984w, http://myhy.build/uploads/img/_2976x744_crop_center-center_41_line/storyheader.jpg 2976w"
sizes="100vw"
class="banner-image" />
<source media="(min-width: 992px)" srcset="http://myhy.build/uploads/img/_1200x300_crop_center-center_82_line/storyheader.jpg.webp 1200w, http://myhy.build/uploads/img/_2400x600_crop_center-center_61_line/storyheader.jpg.webp 2400w, http://myhy.build/uploads/img/_3600x900_crop_center-center_41_line/storyheader.jpg.webp 3600w, http://myhy.build/uploads/img/_992x248_crop_center-center_82_line/storyheader.jpg.webp 992w, http://myhy.build/uploads/img/_1984x496_crop_center-center_61_line/storyheader.jpg.webp 1984w, http://myhy.build/uploads/img/_2976x744_crop_center-center_41_line/storyheader.jpg.webp 2976w"
sizes="100vw"
type="image/webp" class="banner-image" />
<img src="http://myhy.build/uploads/img/_1200x300_crop_center-center_82_line/storyheader.jpg" class="banner-image" alt="" />
</picture>