微信小程序:多图片显示及图片点击放大,多视频显示

微信小程序:多图片显示及图片点击放大,多视频显示

  • 01 多图片显示及图片点击放大
  • 02 多视频
  • 03 全部代码

在这里插入图片描述

01 多图片显示及图片点击放大

在这里插入图片描述
在这里插入图片描述

<view><view class="title">图片:</view><block wx:if="{{photoUrlList.length==0}}"><view class="video-box-noData">无数据</view></block><block wx:if="{{photoUrlList.length > 0}}"><view class="photo-box"><block wx:for="{{photoUrlList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><image class="photo-class" bindtap="previewImage" data-list="{{photoUrlList}}" data-src="{{item}}"  mode="aspectFit" src="{{item}}"></image></block></view></block></view>
//图片集合
let photoUrlList=['https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg','https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg','https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg','https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg','https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg','https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg','https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg',]
//点击放大
previewImage:function(e) {var src = e.currentTarget.dataset.src; // 获取data-srcvar imgList = e.currentTarget.dataset.list;// 获取data-listwx.previewImage({current: src, // 当前显示图片的地址urls: imgList // 所有需要预览的图片是数组对象})
},

02 多视频

在这里插入图片描述

<view><view class="title">视频:</view><block wx:if="{{videoUrlList.length==0}}"><view class="video-box-noData">无数据</view></block><block wx:if="{{videoUrlList.length > 0}}"><view class="video-box"><block wx:for="{{videoUrlList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><video id="myVideo" class="video-class"src="{{item}}" binderror="videoErrorCallback" show-center-play-btn='{{true}}' show-play-btn="{{true}}" controlsshow-mute-btn="{{true}}"enable-play-gesture="{{true}}"picture-in-picture-show-progress="{{true}}"show-snapshot-button="{{true}}"picture-in-picture-mode="{{['push', 'pop']}}"bindenterpictureinpicture='bindVideoEnterPictureInPicture'bindleavepictureinpicture='bindVideoLeavePictureInPicture'></video></block></view></block>
</view>
let videoUrlList=['http://data.video.iqiyi.com/videos/other/20240311/3f/9e/0424dc6e60f921fb57af60cd58133157.mp4?pv=0.2&pv=0.2','http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400','http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400','http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400','http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400','http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400','http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400',
]// 视频相关bindVideoEnterPictureInPicture() {// console.log('进入小窗模式')},bindVideoLeavePictureInPicture() {// console.log('退出小窗模式')},videoErrorCallback(e) {console.log('视频错误信息:')console.log(e.detail.errMsg)},

03 全部代码

wxml:

<view class="detailsWorking"><view class="con2"><view><view class="title">图片:</view><block wx:if="{{photoUrlList.length==0}}"><view class="video-box-noData">无数据</view></block><block wx:if="{{photoUrlList.length > 0}}"><view class="photo-box"><block wx:for="{{photoUrlList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><image class="photo-class" bindtap="previewImage" data-list="{{photoUrlList}}" data-src="{{item}}"  mode="aspectFit" src="{{item}}"></image></block></view></block></view><view><view class="title">视频:</view><block wx:if="{{videoUrlList.length==0}}"><view class="video-box-noData">无数据</view></block><block wx:if="{{videoUrlList.length > 0}}"><view class="video-box"><block wx:for="{{videoUrlList}}" wx:for-item="item" wx:for-index="index" wx:key="index"><video id="myVideo" class="video-class"src="{{item}}" binderror="videoErrorCallback" show-center-play-btn='{{true}}' show-play-btn="{{true}}" controlsshow-mute-btn="{{true}}"enable-play-gesture="{{true}}"picture-in-picture-show-progress="{{true}}"show-snapshot-button="{{true}}"picture-in-picture-mode="{{['push', 'pop']}}"bindenterpictureinpicture='bindVideoEnterPictureInPicture'bindleavepictureinpicture='bindVideoLeavePictureInPicture'></video></block></view></block></view></view><button class="button" bindtap="detailed">关闭</button></view>

wxcss:

.detailsWorking {position: absolute;top: 0;left: 0;right: 0;bottom: 0;overflow: hidden;
}.detailsWorking .con2 {position: absolute;top: 42rpx;left: 20rpx;right: 20rpx;bottom: 100rpx;z-index: 99;overflow: auto;font-size: 28rpx;
}
.con2 .title{width: 100%;height: 90rpx;line-height: 90rpx;font-size: 28rpx;font-weight: 700;color: #333;
}.detailsWorking .button {position: absolute;left: 0;bottom: 0;width: 100%;height: 90rpx;line-height: 90rpx;text-align: center;font-size: 26rpx;color: #666666;padding: 0;border-top: 1px solid #f2f2f2;background-color: #fff;overflow: hidden;
}
.con2 .video-box-noData{padding: 20rpx;border: 1px solid rgb(111, 189, 134);
}
.photo-box , .video-box{padding-left: 20rpx;padding-top: 20rpx;border: 1px solid rgb(111, 189, 134);
}
.photo-class,.video-class{width: 200rpx;height: 200rpx;border: 1px solid #eeeeee;margin-right: 18rpx;margin-bottom: 18rpx;
}

js

//获取 图片、视频
photoAndVideo:function(e){let that=this;let xxx= that.data.xxxx;wx.showLoading({title:'查询中...',mask: true});//加载效果//查询数据app.get(api.xxxx,{xxx: xxx,}).then(res => {//关闭加载效果wx.hideLoading();if (res.code == 200) {let photoUrlList=res.data.photoUrlList ? res.data.photoUrlList : [];let videoUrlList=res.data.videoUrlList ? res.data.videoUrlList : [];// photoUrlList=[//     'https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg',//     'https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg',//     'https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg',//     'https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg',//     'https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg',//     'https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg',//     'https://res.wx.qq.com/wxdoc/dist/assets/img/0.4cb08bb4.jpg',// ]// videoUrlList=[//     'http://data.video.iqiyi.com/videos/other/20240311/3f/9e/0424dc6e60f921fb57af60cd58133157.mp4?pv=0.2&pv=0.2',//     'http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400',//     'http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400',//     'http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400',//     'http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400',//     'http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400',//     'http://wxsnsdy.tc.qq.com/105/20210/snsdyvideodownload?filekey=30280201010421301f0201690402534804102ca905ce620b1241b726bc41dcff44e00204012882540400&bizid=1023&hy=SH&fileparam=302c020101042530230204136ffd93020457e3c4ff02024ef202031e8d7f02030f42400204045a320a0201000400',// ]//更新数据that.setData({photoUrlList: photoUrlList,videoUrlList: videoUrlList,})} else {//信息提示wx.showToast({title: res.msg,icon: 'none',duration: 3000})}}).catch((err) => {//关闭加载效果wx.hideLoading();//信息提示wx.showToast({title: err,icon: 'none',duration: 3000})});
},// 放大图片
previewImage:function(e) {var src = e.currentTarget.dataset.src; // 获取data-srcvar imgList = e.currentTarget.dataset.list;// 获取data-listwx.previewImage({current: src, // 当前显示图片的地址urls: imgList // 所有需要预览的图片是数组对象})
},// 视频相关
bindVideoEnterPictureInPicture() {// console.log('进入小窗模式')
},bindVideoLeavePictureInPicture() {// console.log('退出小窗模式')
},videoErrorCallback(e) {console.log('视频错误信息:')console.log(e.detail.errMsg)
},

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/47788.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

源码搭建国内微短剧系统(APP+小程序)云存储配置流程

国内微短剧系统很多人不知道云存储和配置的操作流程&#xff0c;我整理了一份非常详细的操作文档流程&#xff0c;给大家介绍短剧系统云存储配置的详细操作流程。顺便推荐一下国内微短剧系统。 推荐下他们的开源地址&#xff1a;https://gitee.com/nymaite_com_2878868888/tjg…

CrowdStrike更新致850万Windows设备宕机,微软紧急救火!

7月18日&#xff0c;网络安全公司CrowdStrike发布了一次软件更新&#xff0c;导致全球大范围Windows系统宕机。 预估CrowdStrike的更新影响了将近850万台Windows设备&#xff0c;多行业服务因此停滞&#xff0c;全球打工人原地放假&#xff0c;坐等吃瓜&#xff0c;网络上爆梗…

适用于 Mac 或 MacBook 的最佳数据恢复软件

Apple 设计的电脑可靠且用户友好&#xff0c;但即使是最好的最新款 MacBook硬件也会出现故障。当您的存储出现问题时&#xff0c;数据恢复软件可以帮助您恢复丢失和损坏的文件。 数据丢失的另一个原因是有时会发生令人尴尬的错误。如果您不小心丢弃了所需的文件&#xff0c;然…

【RaspberryPi】树莓派Matlab/Simulink支持包安装与使用

官网支持与兼容性 Raspberry Pi Support from MATLAB - Hardware Support - MATLAB & Simulink Raspberry Pi Support from Simulink - Hardware Support - MATLAB & Simulink Matlab与树莓派兼容性 Simulink与树莓派兼容性 树莓派Matlab&Simulink RaspberryPi支…

本地部署 mistralai/Mistral-Nemo-Instruct-2407

本地部署 mistralai/Mistral-Nemo-Instruct-2407 1. 创建虚拟环境2. 安装 fschat3. 安装 transformers4. 安装 flash-attn5. 安装 pytorch6. 启动 controller7. 启动 mistralai/Mistral-Nemo-Instruct-24078. 启动 api9. 访问 mistralai/Mistral-Nemo-Instruct-2407 1. 创建虚拟…

240722视频识别红色物体

文章目录 1.实验目的2.实验思路3.实验代码4.实验结果展示1.实验目的 针对需求,拍摄视频并实时识别其中红色物体。 2.实验思路 针对HSV模型可以很好的区分色彩这一特性,所以我们可以很好的找到我们需要的ROI 3.实验代码 # @File: 13.2拍视频识别其中的红色物体.py # @Au…

Github 2024-07-22开源项目日报Top10

根据Github Trendings的统计,今日(2024-07-22统计)共有10个项目上榜。根据开发语言中项目的数量,汇总情况如下: 开发语言项目数量Python项目1Kotlin项目1Rust项目1Java项目1HTML项目1非开发语言项目1C++项目1C#项目1Lua项目1PowerShell项目1JavaScript项目1免费编程书籍和学…

【测开能力提升-fastapi框架】fastapi能力提升 - 中间件与CORS

1. 中间件 1.1 介绍&#xff08;ChatGPT抄的&#xff0c;大致可以理解&#xff09; 一种机制&#xff0c;用于在处理请求和响应之前对其进行拦截、处理或修改。中间件可以在应用程序的请求处理管道中插入自定义逻辑&#xff0c;以实现一些通用的功能&#xff0c;如身份验证、…

llama_index中使用Ollama是出现timed out 问题

现象&#xff1a; File "~/anaconda3/envs/leo_py38/lib/python3.8/site-packages/httpx/_transports/default.py", line 86, in map_httpcore_exceptionsraise mapped_exc(message) from exc httpx.ReadTimeout: timed out代码&#xff1a; from llama_index.core …

传神社区|数据集合集第7期|法律NLP数据集合集

自从ChatGPT等大型语言模型&#xff08;Large Language Model, LLM&#xff09;出现以来&#xff0c;其类通用人工智能&#xff08;AGI&#xff09;能力引发了自然语言处理&#xff08;NLP&#xff09;领域的新一轮研究和应用浪潮。尤其是ChatGLM、LLaMA等普通开发者都能运行的…

uniapp使用WebSocket发消息缓慢问题

解决发消息缓慢的问题&#xff08;第一次发消息缓慢&#xff0c;第二次开始速度正常&#xff09; 问题原因&#xff1a;1.可能是首次发消息时&#xff0c;WebSocket连接可能还在建立过程中。WebSocket连接需要经历握手&#xff08;handshake&#xff09;阶段&#xff0c;即HTTP…

Sokit(TCP/UDP调试工具)

下载&#xff1a;http://www.winwin7.com/soft/56522.html#xiazai Sokit中文版是一款免费开源的TCP / UDP 测试&#xff08;调试&#xff09;工具&#xff0c;它主要可以用于接收和发送TCP/UDP数据包&#xff0c;让你更深的了解网络状况&#xff0c;能够有效地接收、发送、转…

简析漏洞生命周期管理的价值与关键要求

开展全面且持续的漏洞管理工作&#xff0c;对于企业组织改善数字化应用安全状况&#xff0c;降低潜在风险&#xff0c;并保持数字资产的完整性和可信度至关重要。做好漏洞管理并不容易&#xff0c;组织不仅需要拥有健全的漏洞管理策略&#xff0c;同时还要辅以明确定义的漏洞管…

C++中的左值(lvalue)和 右值(rvalue),移动语义(move semantics)和完美转发(perfect forwarding)

C中的左值&#xff08;lvalue&#xff09;和 右值&#xff08;rvalue&#xff09;&#xff0c;移动语义&#xff08;move semantics&#xff09;和完美转发&#xff08;perfect forwarding&#xff09; flyfish 在C中&#xff0c;表达式可以是左值&#xff08;lvalue&#xf…

HarmonyOS应用开发者高级认证,Next版本发布后最新题库 - 多选题序号3

基础认证题库请移步&#xff1a;HarmonyOS应用开发者基础认证题库 注&#xff1a;有读者反馈&#xff0c;题库的代码块比较多&#xff0c;打开文章时会卡死。所以笔者将题库拆分&#xff0c;单选题20个为一组&#xff0c;多选题10个为一组&#xff0c;题库目录如下&#xff0c;…

全面解析:构建基于深度学习的安全帽检测系统(UI界面+YOLO代码+数据集)

注意看全文的结尾作者的声明 一、引言 1. 项目背景与动机 在建筑工地等高危场所&#xff0c;佩戴安全帽是保护工人安全的基本措施。然而&#xff0c;工人有时会忘记佩戴安全帽或者佩戴不规范。为了提高现场安全管理效率&#xff0c;我们引入了基于深度学习的安全帽检测系统&…

Linux 驱动学习笔记

1、驱动程序分为几类&#xff1f; • 内核驱动程序&#xff08;Kernel Drivers&#xff09;&#xff1a;这些是运行在操作系统内核空间的驱动程序&#xff0c;用于直接访问和控制硬件设备。它们提供了与硬件交互的底层功能&#xff0c;如处理中断、访问寄存器、数据传输等。 •…

List类型实体属性XML和JSON情景下的序列号和反序列化

反序列化 JsonProperty(“SaleOrders”)可以识别xml和json JsonProperty(“SaleOrders”) private List saleOrders; Data JacksonXmlRootElement(localName "SaleOrder") JsonIgnoreProperties(ignoreUnknown true) public class SaleOrder {}序列化 变成json可…

TCP并发服务器多线程

1.创建线程‐‐pthread_create int pthread_create( pthread_t *thread, // 线程 ID 无符号长整型 const pthread_attr_t *attr, // 线程属性&#xff0c; NULL void *(*start_routine)(void *), // 线程处理函数 void *arg); // 线程处理函数 参数&#xff1a; pthrea…

安装Ubuntu24.04服务器版本

Ubuntu系统安装 一.启动安装程序二.执行 Ubuntu Server 安装向导1.选择安装程序语言&#xff0c;通常选择「English」2.设置键盘布局&#xff0c;默认「English US」即可3.选择安装方式 三.配置网络1.按Tab键选择网络接口&#xff08;例如 ens160&#xff09;&#xff0c;然后按…