VideoContext.exitFullScreen
解释:退出全屏
方法参数
无
示例
在开发者工具中预览效果
扫码体验
请使用百度APP扫码
图片示例
代码示例
-
<view class="wrap"> <video id="myVideo" enable-danmu="true" src="https://b.bdstatic.com/swan-temp/940fe716b0eaad38f47b209d61657490.mp4"></video> <view>设置5s内自动退出全屏</view></view>
-
Page({ data: { }, onLoad() { const videoContext = swan.createVideoContext('myVideo'); this.videoContext = videoContext; this.videoContext.play(); this.videoContext.requestFullScreen({direction: 90}); let that = this; setTimeout(function () { that.videoContext.exitFullScreen(); }, 5000); }});
