LivePlayerContext.pause

2020-08-26 16:34 更新

解釋:暫停

方法參數(shù)

Object object

object參數(shù)說明

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

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í)行)

示例 

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



圖片示例

代碼示例

<view class="wrap">
    <live-player id="myLive"  src="{{src}}"  autoplay="true">
    </live-player>
    <button type="primary" bind:tap="livePause" disabled="{{disabled}}">暫停播放 pause</button>
    <button type="primary" bind:tap="liveResume" disabled="{{!disabled}}">恢復(fù)播放 resume</button>
</view>
Page({
    data: {
        disabled: false,
        src: 'https://b.bdstatic.com/miniapp/development_tool/Smartprogram.mp4'
    },
    onReady() {
        this.livePlayerContext = swan.createLivePlayerContext('myLive');
    },
    livePause(e) {
        swan.showToast({
            title: '已暫停',
            icon: 'none'
        });
        this.livePlayerContext.pause();
        this.setData({disabled: true}) 
    },
    liveResume() {
        swan.showToast({
            title: '已恢復(fù)',
            icon: 'none'
        });
        this.livePlayerContext.resume();
        this.setData({disabled: false})
    }
});


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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)