vue中audio音频播放

 

audio音频在vue播放整理

this.audio = new Audio();
this.audio.src = mp3;
let playPromise; 
playPromise = this.audio.play();
if (playPromise) {
        playPromise.then(() => {
            // 音频加载成功
            // 音频的播放需要耗时
          that.timer = setInterval(() => {
            second--;
            if (second <= 0) {
              that.audio.pause()
              clearInterval(that.timer);
            }
          }, 1000);
        }).catch((e) => {
          // 音频加载失败
          console.error(e);
        });
      }

 

// 重新加载
this.audio.load();

// 判断是否正在播放 返回布尔值
this.audio.paused

// 暂停
this.audio.pause();

  

posted @ 2019-02-15 22:45  深以为然  阅读(43545)  评论(0编辑  收藏  举报