VideoContext.requestFullScreen

最低支持基础库版本 3.90.1 。

解释:按设置的视频全屏方向进入全屏。不指定视频全屏方向时则根据设备方向判断全屏方向。

方法参数

Object object

object 参数说明

参数名类型是否必填默认值说明
directionNumber当前方向角度,有效值为 0 ,90 ,-90

direction 有效值

说明
0正常竖向
90屏幕顺时针 90 度
-90屏幕逆时针 90 度

示例

在开发者工具中打开

在开发者工具中打开

在 WEB IDE 中打开

扫码体验

代码示例

百度智能小程序

请使用百度APP扫码

图片示例

VideoContext.requestFullScreen - 图2

代码示例

  • SWAN
  • JS
  1. <view class="wrap">
  2. <video id="myVideo" enable-danmu="true" src="https://b.bdstatic.com/swan-temp/940fe716b0eaad38f47b209d61657490.mp4"></video>
  3. <button type="primary" bindtap="requestFullScreen">点击全屏</button>
  4. </view>
  1. Page({
  2. onLoad() {
  3. this.videoContext = swan.createVideoContext('myVideo');
  4. this.videoContext.play();
  5. },
  6. requestFullScreen() {
  7. this.videoContext.requestFullScreen({direction: 90});
  8. }
  9. });