InnerAudioContext.onSeeking

2020-08-26 16:28 更新

解釋:音頻進行 seek 操作事件

方法參數(shù)

Function callback

示例 

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


圖片示例

代碼示例

<view class="wrap">
    <view class="card-area">
        <button type="primary" bindtap="seek">跳轉(zhuǎn)到80s處</button>
    </view>
</view>
Page({
    onLoad() {
        const innerAudioContext = swan.createInnerAudioContext();
        innerAudioContext.src = 'https://vd3.bdstatic.com/mda-ic7mxzt5cvz6f4y5/mda-ic7mxzt5cvz6f4y5.mp3';
        innerAudioContext.autoplay = true;
        innerAudioContext.onPlay(res => {
            swan.showModal({
                title: 'onPlay',
                content: JSON.stringify(res)
            });
            console.log('onPlay', res);
        });
        innerAudioContext.onSeeked(res => {
            swan.showModal({
                title: 'onSeeked',
                content: '跳轉(zhuǎn)完成'
            });
        });
        innerAudioContext.onSeeking(res => {
            swan.showModal({
                title: 'onSeeking',
                content: '正在跳轉(zhuǎn)至音頻80s后'
            });
        });
        this.innerAudioContext = innerAudioContext;
    },
    seek() {
        this.innerAudioContext.seek(80);
    }
});


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號