Bootstrap

微信小程序视频自动全屏

<video id="myVideo" src="cloud://test-qu7lc.7465-test-qu7lc-1302432879/video/l3100gw1zos.mp4" autoplay='{{true}}' show-progress='{{false}}' controls='{{true}}'
bindended='endAction'></video>
// 自动全屏
	onShow: function () {
		this.videoContext = wx.createVideoContext('myVideo', this);// 	创建 video 上下文 VideoContext 对象。
		this.videoContext.requestFullScreen({	// 设置全屏时视频的方向,不指定则根据宽高比自动判断。
			direction: 90						// 屏幕逆时针90度
		});
	},
// 视频结束后自动退出全屏
	endAction: function () {
		this.videoContext = wx.createVideoContext('myVideo', this);
		this.videoContext.exitFullScreen(); //退出全屏
},`

;