我有一个页面在平板电脑视图及上方并排显示 2 列图像,我使用延迟加载 jquery,问题是当我滚动浏览时,它仅延迟加载左列图像,右侧列显示之后的所有图像我滚动浏览所有部分图像。
代码如下:
<div class="row">
<div class="col-sm-6">
<!-- image section left side -->
<img class="lazy" data-original="img1.jpg"> <!-- show up when screen stop here -->
<img class="lazy" data-original="img2.jpg"> <!-- show up when screen stop here -->
</div>
<div class="col-sm-6">
<!-- image section right side -->
<img class="lazy" data-original="img3.jpg"> <!-- not shown when screen stop here (also screen stop on img1.jpg) -->
<img class="lazy" data-original="img4.jpg"> <!-- shown because the end of image section, and also showing img3.jpg all at once -->
</div>
</div>
我使用了宽度和高度,但仍然无法正常工作