uniapp微信小程序视频全屏播放 退出全屏暂停播放

// 播放时进入全屏
play() {
	let videoContext = uni.createVideoContext('video', this)
	videoContext.requestFullScreen()
},
 
//退出全屏时暂停
fullscreenchange(e) {
	if (!e.detail.fullScreen) {
		uni.createVideoContext('video', this).pause();
	} 
},
//退出全屏时停止
fullscreenchange (e){
	if(!e.detail.fullScreen){
		this.videoContext.stop()
	}
}

注意:微信小程序模拟器下调试无效,必须真机调试有用!!!!

注意:微信小程序模拟器下调试无效,必须真机调试有用!!!!

注意:微信小程序模拟器下调试无效,必须真机调试有用!!!!

你可能感兴趣的:(javascript,微信小程序,uni-app,uni-app,微信小程序,音视频)