InnerAudioContext.onTimeUpdate

解释:音频进度更新事件

方法参数

Function callback

示例

在开发者工具中预览效果

扫码体验

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

图片示例

InnerAudioContext.onTimeUpdate - 图2

InnerAudioContext.onTimeUpdate - 图3

InnerAudioContext.onTimeUpdate - 图4

代码示例

  • 在 swan 文件中
  1. <view class="container">
  2. <view class="card-area">
  3. <view class="description">
  4. 正在播放《演员》
  5. </view>
  6. <view class="description">
  7. {{currentTime}} / {{duration}}
  8. </view>
  9. </view>
  10. </view>
  • 在 js 文件中
  1. Page({
  2. onLoad() {
  3. let that = this;
  4. const innerAudioContext = swan.createInnerAudioContext();
  5. innerAudioContext.src = 'https:://vd3.bdstatic.com/mda-ic7mxzt5cvz6f4y5/mda-ic7mxzt5cvz6f4y5.mp3';
  6. innerAudioContext.autoplay = false;
  7. innerAudioContext.onTimeUpdate(res => {
  8. swan.showModal({
  9. title: 'onTimeUpdate',
  10. content: JSON.stringify(res)
  11. });
  12. console.log('onTimeUpdate', res);
  13. });
  14. this.innerAudioContext = innerAudioContext;
  15. this.innerAudioContext.play();
  16. }
  17. });