InnerAudioContext.offTimeUpdate

2020-08-26 16:29 更新

解释:取消监听 onTimeUpdate 事件

方法参数

Function callback

示例 

在开发者工具中打开


图片示例

代码示例

<view class="wrap">
    <view class="card-area">
        <view class="description"> 
            正在播放《演员》
        </view> 
        <view class="description"> 
            {{currentTime}} / {{duration}}
        </view>
    </view>
    <button type="primary" bindtap="offTimeUpdate">点击取消监听</button>
</view>
    Page({
        data: {
            currentTime: 0,
            duration: 0 
        },
        onLoad() {
            const innerAudioContext = swan.createInnerAudioContext();
            innerAudioContext.src = 'https://b.bdstatic.com/miniapp/images/yanyuan.mp3';
            innerAudioContext.autoplay = false;
            this.innerAudioContext = innerAudioContext;
            this.innerAudioContext.play();
            this.innerAudioContext.onTimeUpdate(res => {
            this.setData('currentTime', res.data.currentTime);
            this.setData('duration', res.data.duration);
            });
        },
        offTimeUpdate() {
            this.innerAudioContext.offTimeUpdate()
        }
    });


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

    扫描二维码

    下载编程狮App

    公众号
    微信公众号

    编程狮公众号