微信小程序视频全屏播放

it2025-08-08  9

微信小程序视频全屏播放

2020/10/22

<button bindtap='play' >播放</button> <video id='myvideo' class='{{fullScreen?"show":"hide"}}' src="视屏地址" autoplay="true" bindfullscreenchange="fullScreen" bindended="closeVideo" controls></video> /**播放视屏 */ play(e) { //执行全屏方法 var videoContext = wx.createVideoContext('myvideo', this); videoContext.requestFullScreen(); this.setData({ fullScreen:true }) }, /**关闭视屏 */ closeVideo() { //执行退出全屏方法 var videoContext = wx.createVideoContext('myvideo', this); videoContext.exitFullScreen(); }, /**视屏进入、退出全屏 */ fullScreen(e){ var isFull = e.detail.fullScreen; //视屏全屏时显示加载video,非全屏时,不显示加载video this.setData({ fullScreen:isFull }) }
最新回复(0)