LivePlayerContext.requestFullScreen
解释:进入全屏
方法参数
Object object
object 参数说明
属性名 | 类型 | 默认值 | 必填 | 说明 | Web 态说明 |
---|---|---|---|---|---|
direction | Number | 是 | 有效值为 0(正常竖向),90(屏幕逆时针 90 度),-90(屏幕顺时针 90 度) | Web 态下不生效。屏幕是否旋转由浏览器决定 | |
success | Function | 否 | 接口调用成功的回调函数 | - | |
fail | Function | 否 | 接口调用失败的回调函数 | - | |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) | - |
示例
扫码体验
代码示例
请使用百度APP扫码
图片示例
代码示例
- SWAN
- JS
<view class="wrap">
<live-player
id="myLive"
src="{{src}}"
autoplay="true">
</live-player>
<button type="primary" bind:tap="requestFullScreen">进入全屏</button>
</view>
Page({
data: {
src: 'https://b.bdstatic.com/miniapp/development_tool/Smartprogram.mp4'
},
onReady(e) {
this.livePlayerContext = swan.createLivePlayerContext('myLive');
},
requestFullScreen(e) {
this.livePlayerContext.requestFullScreen({direction: 0});
// this.livePlayerContext.requestFullScreen({direction: 90}); 屏幕逆时针90度
// this.livePlayerContext.requestFullScreen({direction: -90}); 屏幕顺时针90度
}
});