InnerAudioContext.offTimeUpdate

解释:取消监听 onTimeUpdate 事件

方法参数

Function callback

示例

在开发者工具中预览效果

扫码体验

InnerAudioContext.offTimeUpdate - 图1请使用百度APP扫码

图片示例

InnerAudioContext.offTimeUpdate - 图2

InnerAudioContext.offTimeUpdate - 图3

InnerAudioContext.offTimeUpdate - 图4

代码示例

  • 在 swan 文件中
  1. <view class="wrap">
  2. <view class="card-area">
  3. <view class="description">
  4. 正在播放《演员》
  5. </view>
  6. <view class="description">
  7. {{currentTime}} / {{duration}}
  8. </view>
  9. </view>
  10. <button type="primary" bindtap="offTimeUpdate">点击取消监听</button>
  11. </view>
  • 在 js 文件中
  1. Page({
  2. data: {
  3. currentTime: '',
  4. duration: '0'
  5. },
  6. onLoad() {
  7. const innerAudioContext = swan.createInnerAudioContext();
  8. innerAudioContext.src = 'https://vd3.bdstatic.com/mda-ic7mxzt5cvz6f4y5/mda-ic7mxzt5cvz6f4y5.mp3';
  9. innerAudioContext.autoplay = false;
  10. this.innerAudioContext = innerAudioContext;
  11. this.innerAudioContext.play();
  12. this.innerAudioContext.onTimeUpdate(res => {
  13. this.setData('currentTime', res.data.currentTime);
  14. this.setData('duration', res.data.duration);
  15. });
  16. },
  17. offTimeUpdate() {
  18. this.innerAudioContext.offTimeUpdate()
  19. }
  20. });