VideoContext.seek

2020-08-26 16:31 更新

解釋:跳轉(zhuǎn)到指定位置(單位:s)

方法參數(shù)

Number position

示例 

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


圖片示例

代碼示例

<view class="wrap">
    <video id="myVideo" auto enable-danmu="true" src="https://b.bdstatic.com/miniapp/development_tool/Smartprogram.mp4" rel="external nofollow" ></video>
    <button type="primary" bindtap="seek">seek</button>
</view>
Page({
    onLoad() {
        this.videoContext = swan.createVideoContext('myVideo');
        this.videoContext.play();
    },
    seek() {
        this.videoContext.seek(80); // 超出視頻時長,此方法不生效
        swan.showToast({
            title: '跳轉(zhuǎn)到80s處',
            icon: 'none'
        });
    }
});


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號