如何防止在3G网络下图片加载出来时文字会下落的情况

解决方法:
撑开div的高度,给图片加载留出空间

.item-img-wrapper
  overflow: hidden
  height: 0
  padding-bottom: 33.9%
  .item-img
    width: 100%
	<div class="item-img-wrapper">
          <img class="item-img" :src="item.imgUrl">
      </div>

33.9%是图片的height/width

猜你喜欢

转载自blog.csdn.net/weixin_43170484/article/details/84653378