InnerAudioContext.offTimeUpdate

2020-08-26 16:29 更新

解釋:取消監(jiān)聽 onTimeUpdate 事件

方法參數(shù)

Function callback

示例 

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


圖片示例

代碼示例

<view class="wrap">
    <view class="card-area">
        <view class="description"> 
            正在播放《演員》
        </view> 
        <view class="description"> 
            {{currentTime}} / {{duration}}
        </view>
    </view>
    <button type="primary" bindtap="offTimeUpdate">點擊取消監(jiān)聽</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()
        }
    });


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

    掃描二維碼

    下載編程獅App

    公眾號
    微信公眾號

    編程獅公眾號