VideoContext.exitFullScreen

解释:退出全屏

方法参数

示例

在开发者工具中预览效果

扫码体验

VideoContext.exitFullScreen - 图1请使用百度APP扫码

图片示例

VideoContext.exitFullScreen - 图2

VideoContext.exitFullScreen - 图3

VideoContext.exitFullScreen - 图4

代码示例

  • 在 swan 文件中
  1. <view class="wrap">
  2. <video id="myVideo" enable-danmu="true" src="https://b.bdstatic.com/swan-temp/940fe716b0eaad38f47b209d61657490.mp4"></video>
  3. <view>设置5s内自动退出全屏</view>
  4. </view>
  • 在 js 文件中
  1. Page({
  2. data: { },
  3. onLoad() {
  4. const videoContext = swan.createVideoContext('myVideo');
  5. this.videoContext = videoContext;
  6. this.videoContext.play();
  7. this.videoContext.requestFullScreen({direction: 90});
  8. let that = this;
  9. setTimeout(function () {
  10. that.videoContext.exitFullScreen();
  11. }, 5000);
  12. }
  13. });