我的资产调整首页调整提交企业认证接口调整
This commit is contained in:
93
components/vear-carousel/vear-carousel.vue
Normal file
93
components/vear-carousel/vear-carousel.vue
Normal file
@@ -0,0 +1,93 @@
|
||||
<template>
|
||||
<swiper class="image-container" previous-margin="45rpx" next-margin="45rpx" circular @change="swiperChange">
|
||||
<swiper-item :class="currentIndex == index ? 'swiper-item' : 'swiper-item-side'" v-for="(item, index) in imgList" :key="item[urlKey]">
|
||||
<image @click="clickImg(item)" :class="currentIndex == index ? 'item-img' : 'item-img-side'" :src="item[urlKey]" lazy-load :style="dontFirstAnimation ? 'animation: none;' : ''" mode="aspectFill"></image>
|
||||
</swiper-item>
|
||||
</swiper>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
imgList: {
|
||||
type: Array,
|
||||
default() {
|
||||
return []
|
||||
}
|
||||
},
|
||||
urlKey: {
|
||||
type: String,
|
||||
default() {
|
||||
return ''
|
||||
}
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
currentIndex: 0,
|
||||
dontFirstAnimation: true
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
swiperChange(e) {
|
||||
this.dontFirstAnimation = false
|
||||
this.currentIndex = e.detail.current
|
||||
},
|
||||
clickImg(item) {
|
||||
this.$emit('selected', item, this.currentIndex)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped>
|
||||
.image-container {
|
||||
width: 750rpx;
|
||||
height: 350rpx;
|
||||
}
|
||||
|
||||
.item-img {
|
||||
width: 630rpx;
|
||||
height: 300rpx;
|
||||
border-radius: 14rpx;
|
||||
animation: to-big .3s;
|
||||
}
|
||||
|
||||
.swiper-item {
|
||||
width: 630rpx;
|
||||
height: 300rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.item-img-side {
|
||||
width: 630rpx;
|
||||
height: 260rpx;
|
||||
border-radius: 14rpx;
|
||||
animation: to-mini .3s;
|
||||
}
|
||||
|
||||
.swiper-item-side {
|
||||
width: 630rpx;
|
||||
height: 260rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
@keyframes to-mini
|
||||
{
|
||||
from {
|
||||
height: 300rpx;
|
||||
}
|
||||
to {
|
||||
height: 260rpx;
|
||||
}
|
||||
}
|
||||
@keyframes to-big
|
||||
{
|
||||
from {
|
||||
height: 260rpx;
|
||||
}
|
||||
to {
|
||||
height: 300rpx;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user