html:
<view class="uni-margin-wrap" v-if="muenIndex===0">
<swiper class="swiper" :current="page" :duration="0" :vertical="true" :indicator-dots="false" @change="changeplay" @touchstart="touchStart" @touchend="touchEnd">
<swiper-item v-for="(item,index) in videoList" :key="item.id">
<cover-view class="video-box">
<video :src="item.path" class="video" :id="'video_' + index" controls>
</video>
</cover-view>
</swiper-item>
</swiper>
</view>
scss:
.uni-margin-wrap{
width: 750rpx;
height: calc(100vh - 100rpx);
.swiper{
width: 750rpx;
height: 100%;
.video-box{
width: 100%;
height: 100%;
}
.video{
width: 100%;
height: 100%;
z-index: 1;
}
}
}