video 轮播视频

核能气质少年 提交于 2019-11-30 20:57:46
<video controls  :src="product.videoUrl" :poster="resURL + defaultImg"></video>//controls  显示播放器//poster  添加封面图片
//vue<van-swipe :autoplay="2000" :touchable="true">
            <van-swipe-item v-if="product.videoUrl != ''">
                <video controls  :src="product.videoUrl" :poster="resURL + defaultImg"></video>
              
            </van-swipe-item>
            <van-swipe-item v-for="(image, index) in product" :key="index">
                <img :src="image" mode="widthFix"/>
            </van-swipe-item>

        </van-swipe>
//小程序
<swiper >
                    <swiper-item v-if="videoo">
                        <video class="video" :src="videoo" bindplay="playVideo" controls="{{true}}" poster="{{resURL + defaultImg}}"></video>
   
                    </swiper-item>
                    <swiper-item v-for="(item, index) in product" :key="index">
                        
                        <image :src="item" class="slide-image" mode="widthFix" bindtap="perview(product.showPicList, resURL + item)"/>
                     
                    </swiper-item>
</swiper>

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!