首 页 行业热点 新车 试驾评测 养车用车 车型库
当前位置:首页vue实现长图垂直居上 vue实现短图垂直居中

vue实现长图垂直居上 vue实现短图垂直居中

2020-11-27 来源:好土汽车网
导读 vue实现长图垂直居上 vue实现短图垂直居中:大致效果如下图,只考虑垂直方向。长图可以通过滚动条看,短图居中效果,布局合理 html代码(vue作用域内): <div class=box v-for=item in previewImg> <img :src=item alt= @load=checkHeight($e

大致效果如下图,只考虑垂直方向。长图可以通过滚动条看,短图居中效果,布局合理

html代码(vue作用域内):

<div class="box" v-for="item in previewImg">
 <img :src="item" alt="" @load="checkHeight($event)">
</div>

css代码:

.box{
 height: 100%;//如高度等于网页高度
 overflow: auto;
 display: flex;
 flex-direction: column;
 justify-content: space-around;
}
.swiper-slide.long{
 justify-content: flex-start;
}

js代码(vue作用域内,使用jquery):

methods: {
checkHeight:function (event) {
 var el=$(event.currentTarget);
 el.parent().removeClass('long');
  //this.CH 为网页高度
 if(el.height()>this.CH){
 el.parent().addClass('long');
 }

}

}
显示全文