swper组件里面使用video组件,video组件在iOS黑屏无法播放?但是安卓一切正常。
<swiper easing-function='linear' :current="ycurrent" class="swiper_view" :vertical="true"
:indicator-dots="false" :autoplay="false" :duration="10" @change="changswper">
<swiper-item style="background: #000;width: 750rpx;z-index: 6;"
v-for="(item,index) in templist.templist" :key="index">
<view @click="getimmediatevideo" class="video-container" style="width: 100%;">
<video v-if="index==ycurrent" style="width: 100%; height: 100%;"
:src="item.photos[0]" :key="index"></video>
</view>
</swiper-item>
</swiper>