InnerAudioContext.onEnded

2020-08-26 16:28 更新

解釋:音頻自然播放結(jié)束事件

方法參數(shù)

Function callback

示例 

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


圖片示例

代碼示例

<view class="wrap">
    <view class="card-area">
        <view class="title">
            聽至音頻末尾即可觸發(fā)事件
        </view>
        <button type="primary" bindtap="play">點擊開始</button>
        <button type="primary" bindtap="seekEnded">點擊到音頻末尾</button>
    </view>
</view>
Page({
    onLoad() {
        const innerAudioContext = swan.createInnerAudioContext();
        innerAudioContext.src = 'https://b.bdstatic.com/miniapp/images/yanyuan.mp3';
        innerAudioContext.autoplay = false;
        innerAudioContext.loop = false;
        innerAudioContext.onTimeUpdate(res => {
            this.data.endTime = res.data.duration;
        });
        innerAudioContext.onPlay(res => {
            console.log('onPlay', res);
            swan.showToast({
                title: 'onPlay',
                icon: 'none'
            });
        });
        innerAudioContext.onEnded(res => {
            swan.showModal({
                title: 'onEnded',
                content: JSON.stringify(res)
            });
        });
        this.innerAudioContext = innerAudioContext;
    },
    play() {
        this.innerAudioContext.play();
    },
    seekEnded() {
        this.innerAudioContext.seek(this.data.endTime);
    }
});


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號