小程序video自定义播放按钮
2021/12/20 22:22:03
本文主要是介绍小程序video自定义播放按钮,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
小程序video组队的默认样式是无法修改的,实现方式是隐藏组件的播放按钮,再自己实现播放暂停的交互。
wxml结构
隐藏掉 中间按钮show-center-play-btn
和 底部按钮show-play-btn
<video class="video" id="video_player" src="http://www.ydyyjkgj.com/video-ziyuan/Voicechat/16687/18190/14998/19842/8A71DFDEC9279E321BAE110D71653CEE102428.mp4" show-center-play-btn="{{false}}" show-play-btn="{{false}}" enable-play-gesture bindplay="handlePlay" bindpause="handlePause" bindcontrolstoggle="controlsToggle" bindtouchmove="touchMove" bindtouchend="touchEnd"> <view class="control-icon" hidden="{{!controlShow}}"> <image hidden="{{isPlay}}" src="./icon-play.png" bindtap="handlePlay"></image> <image hidden="{{!isPlay}}" src="./icon-pause.png" bindtap="handlePause"></image> </view> </video>
js内容
这里注意wx.createVideoContext
,我这里video
是直接写在页面
如果是写在组件里,wx.createVideoContext
第二个参数要传this
例如:this.videoContext = wx.createVideoContext('video_player', this)
Page({ data: { isPlay: false, controlShow: false }, onl oad() { this.videoContext = wx.createVideoContext('video_player') }, // 播放 handlePlay() { this.setData({ isPlay: true }) this.videoContext.play() }, // 暂停 handlePause() { this.setData({ isPlay: false }) this.videoContext.pause() }, // 控制按钮和 controls 显隐同步 controlsToggle(e) { const { show } = e.detail this.setData({ controlShow: show }) }, // 滑动进度时,隐藏按钮,避免遮挡 touchMove() { this.setData({ controlShow: false }) }, touchEnd() { this.setData({ controlShow: true }) } })
代码片段:https://developers.weixin.qq.com/s/P7cvQHmF7AvG
这篇关于小程序video自定义播放按钮的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-20微信小程序开发入门指南
- 2024-12-20小程序 createCameraContext() 怎么实现识别条形码功能?-icode9专业技术文章分享
- 2024-11-22微信小程序的接口信息py可以抓到吗?-icode9专业技术文章分享
- 2024-11-22怎样解析出微信小程序二维码带的参数?-icode9专业技术文章分享
- 2024-11-22微信小程序二维码怎样解析成链接?-icode9专业技术文章分享
- 2024-11-22微信小程序接口地址的域名需要怎么设置?-icode9专业技术文章分享
- 2024-11-22微信小程序的业务域名有什么作用-icode9专业技术文章分享
- 2024-11-22微信小程序 image有类似html5的onload吗?-icode9专业技术文章分享
- 2024-11-22微信小程序中怎么实现文本内容超出行数后显示省略号?-icode9专业技术文章分享
- 2024-11-22微信小程序怎么实现分享样式定制和图片定制功能?-icode9专业技术文章分享