【发布时间】:2017-02-27 23:46:58
【问题描述】:
我需要能够将此作为链接并让后续链接页面根据屏幕尺寸显示正确的图像文件。在我添加 a href 之前,html 正在努力选择正确的图像。有没有办法完成我正在寻找的东西?
<picture class="imagesVerticalGallery">
<!--small img -->
<a href="http://sofialeiby.com/update/img/abc/1abcinstall_1200.jpg">
<source srcset="http://sofialeiby.com/update/img/abc/1abcinstall_1200.jpg" media="(min-width: 768px)"></a>
<!--large img -->
<a href="http://sofialeiby.com/update/img/abc/1abcinstall.jpg">
<source srcset="http://sofialeiby.com/update/img/abc/1abcinstall.jpg"></a>
<!--default large img -->
<a href="http://sofialeiby.com/update/img/abc/1abcinstall.jpg">
<img srcset="http://sofialeiby.com/update/img/abc/1abcinstall.jpg"></a>
</picture>
【问题讨论】: