LivePlayerContext.exitFullScreen

2020-08-26 16:34 更新

解釋:退出全屏

方法參數(shù)

Object object

object參數(shù)說(shuō)明

屬性名類型默認(rèn)值必填說(shuō)明

success

Function

接口調(diào)用成功的回調(diào)函數(shù)

fail

Function

接口調(diào)用失敗的回調(diào)函數(shù)

complete

Function

接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會(huì)執(zhí)行)

示例 

在開(kāi)發(fā)者工具中打開(kāi)


圖片示例

代碼示例

<view class="wrap">
    <live-player 
        id="myLive" 
        src="{{src}}">
    </live-player>
    <view>設(shè)置5s內(nèi)自動(dòng)退出全屏</view>
</view>
Page({
    data: {
        src: 'https://b.bdstatic.com/miniapp/development_tool/Smartprogram.mp4'
    },
    onReady(e) {
        this.livePlayerContext = swan.createLivePlayerContext('myLive');
        this.livePlayerContext.play();
        this.livePlayerContext.requestFullScreen({direction: 90});
        let that = this;
        setTimeout(function () {
            that.livePlayerContext.exitFullScreen();
        }, 5000);
    }
});


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)