VideoContext.showStatusBar
2020-08-26 16:32 更新
解释:显示状态栏,仅在 iOS 全屏下有效。
方法参数
无
示例
代码示例
<view class="wrap">
<video id="myVideo" enable-danmu="true" src="https://b.bdstatic.com/swan-temp/940fe716b0eaad38f47b209d61657490.mp4" rel="external nofollow" ></video>
<button bindtap="showStatusBar">点击显示状态栏</button>
</view>
Page({
onLoad() {
this.videoContext = swan.createVideoContext('myVideo');
this.videoContext.play();
},
showStatusBar() {
this.videoContext.requestFullScreen({direction: 90});
let that = this;
setTimeout(function () {
that.videoContext.showStatusBar();
}, 5000);
}
});
Bug & Tip
- bug:ios13 系统问题暂不支持本 API
以上内容是否对您有帮助:
更多建议: