踏风而至 发表于 2021-5-16 21:28:42

在微信小程序中支持图片和视频在同一个轮播中吗?

<!--轮播部分 视频播放 -->
<swiper id='swip' indicator-dots="true" autoplay="{{true}}" circular="true">
<block wx:for="{{imgUrls}}">
<swiper-item>
<image src="{{item.url}}" wx:if="{{item.type==0}}" class="bcg" />
<video src="{{item.url}}" wx:if="{{item.type==1}}" class="bcg" controls="true" poster='../../image/top.png'></video>
</swiper-item>
</block>
</swiper>Page({
data: {
imgUrls: [
{ type: 0, url: '../../image/banner1.png' },
{ type: 0, url: '../../image/banner2.jpg' },
{ type: 0, url: '../../image/banner3.jpg' },
{ type: 1, url:'http://47.95.208.179:3000/void/qianxun/video1.mp4'},
{ type: 1, url: 'http://47.95.208.179:3000/void/qianxun/video2.mp4'}
],

纯中药根治腰椎颈椎病 发表于 2021-5-18 05:25:02

支持 你这个布局有问题吧

稳稳幸福 发表于 2021-5-22 15:42:32

当您滑到下一个视频窗口时,视频窗口出现了问题?

杜伟 发表于 2021-5-27 08:43:52

这主要是格式问题,无法在手机上显示
页: [1]
查看完整版本: 在微信小程序中支持图片和视频在同一个轮播中吗?