VideoContext.hideStatusBar

2020-08-26 16:32 更新

解釋:隱藏狀態(tài)欄,僅在 iOS 全屏下有效。

方法參數(shù)

示例 

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


代碼示例

<view class="wrap">
    <video id="myVideo" enable-danmu="true" src="https://b.bdstatic.com/miniapp/development_tool/Smartprogram.mp4" rel="external nofollow" ></video>
    <button bindtap="hideStatusBar">點擊隱藏狀態(tài)欄</button>
</view>
Page({
    onLoad() {
        this.videoContext = swan.createVideoContext('myVideo');
        this.videoContext.play();
    },
    hideStatusBar() {
        this.videoContext.requestFullScreen({direction: 90});
        let that = this;
        setTimeout(function () {
            that.videoContext.hideStatusBar();
        }, 5000);
    }
});


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號