VideoContext.requestFullScreen
最低支持基础库版本 3.90.x 。
解释:按设置的视频全屏方向进入全屏。不指定视频全屏方向时则根据设备方向判断全屏方向。
方法参数
Object object
object 参数说明
参数名 | 类型 | 是否必填 | 默认值 | 说明 |
---|---|---|---|---|
direction | object | 否 | 当前方向 | 角度,有效值为0,90,-90 |
direction 有效值
值 | 说明 |
---|---|
0 | 正常竖向 |
90 | 屏幕顺时针90度 |
-90 | 屏幕逆时针90度 |
示例
扫码体验
请使用百度APP扫码
图片示例
代码示例
- 在 swan 文件中
<view class="wrap">
<video id="myVideo" enable-danmu="true" src="https://b.bdstatic.com/swan-temp/940fe716b0eaad38f47b209d61657490.mp4"></video>
<button type="primary" bindtap="requestFullScreen">点击全屏</button>
</view>
- 在 js 文件中
Page({
data: { },
onLoad() {
const videoContext = swan.createVideoContext('myVideo');
this.videoContext = videoContext;
this.videoContext.play();
},
requestFullScreen() {
this.videoContext.requestFullScreen({direction: 90});
}
});