InnerAudioContext.offSeeking

2020-08-26 16:29 更新

解释:取消监听 onSeeking 事件

方法参数

Function callback

示例 

在开发者工具中打开


图片示例

代码示例

<view class="container">
    <view class="card-area">
        <button type="primary" bindtap="seek">seek</button>
        <button type="primary" bindtap="offSeeking">offSeeking</button>
    </view>
</view>
Page({
    onLoad() {
        const innerAudioContext = swan.createInnerAudioContext();
        innerAudioContext.src = 'https://b.bdstatic.com/miniapp/images/yanyuan.mp3';
        innerAudioContext.autoplay = false;
        innerAudioContext.onPlay(res => {
            swan.showModal({
                title: 'onPlay',
                content: JSON.stringify(res)
            });
            console.log('onPlay', res);
        });
        innerAudioContext.onSeeking(res => {
            swan.showModal({
                title: 'onSeeking',
                content: JSON.stringify(res)
            });
        });
        this.innerAudioContext = innerAudioContext;
        this.innerAudioContext.play();
    },
    seek() {
        this.innerAudioContext.seek(80);
    },
    offSeeking() {
        swan.showModal({
            title: 'offSeeking',
            content: '取消监听成功'
        });
        this.innerAudioContext.offSeeking();
    }
});


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号