你真的会自定义audio面板吗?

前言

近期项目中经常使用到音频功能,然而自带的音频控制面板大部分情况都不能满足需
求,固用vue自定义了一个通用的的audio面板。主要功能有:播放、暂停、自定义进度
条,静音控制等内容,废话不多说,先上图

页面组成

  • 播放暂停模块
  • 自定义进度条模块
  • 音频时长模块
  • 静音控制模块

主要思路

  • 使用ref获取audio元素
  • 调用 audio play pause方法实现暂停播放
  • 为audio添加事件: @canplay @timeupdate @ended
  • computed中设置静音和非静音图片资源

html

  <div class="app">
    <div class="dialogDetailAudio" onselectstart="return false">
      <img class="dialogAudioPlay" :src="audioImg" title="播控" @click="playAudio">
      <span class="dialogAudioTime">{{time}}</span>
      <div class="dialogAudioProgress" ref="dialogAudioProgress" @mousedown="controlAudioProgress($event)">
        <span class="progressDot" :style="dotStyle"></span>
        <span class="bar" :style="progressStyle"></span>
      </div>
      <span class="dialogAudioDuration">{{duration}}</span>
      <img class="dialogAudioListen" :src="dialogAudioListen" title="静音" @click="listenDialogAudio">
      <img class="dialogAudioDownload" src="./callRecordDownload.png" title="下载" @click="downloadCallRecord">
      <audio ref="recordAudio" class="recordAudio" type="audio/mpeg" 
        @canplay="canPlay" @timeupdate="timeUpdate" @ended="onEnded" :src="audioUrl">
      </audio>
    </div>
  </div>

css

* {
  margin: 0;
  padding: 0;
}

.dialogDetailAudio {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  width: 550px;
  height: 49px;
  line-height: 49px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 5px 30px 0px rgba(29, 34, 54, 0.18);
  border-radius: 6px;
}

.dialogAudioPlay {
  display: inline-block;
  position: relative;
  top: 6px;
  margin-left: 15px;
  cursor: pointer;
  width: 23px;
  height: 23px;
}

.dialogAudioTime {
  margin-left: 11px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(51, 51, 51, 1);
}

.dialogAudioProgress {
  display: inline-block;
  width: 300px;
  height: 2px;
  background: rgba(212, 249, 232, 1);
  border-radius: 1px;
  margin-left: 12px;
  position: relative;
}

.progressDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: rgba(5, 180, 147, 1);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
  margin-left: -5px;
  cursor: pointer;
}

.bar {
  height: 100%;
  background: rgba(5, 180, 147, 1);
  border-radius: 3px;
  display: inline-block;
  position: absolute;
}

.dialogAudioDuration {
  margin-left: 11px;
  font-size: 11px;
  font-weight: 400;
  color: rgba(34, 34, 34, 1);
}

.dialogAudioListen,
.dialogAudioDownload {
  width: 16px;
  height: 13px;
  cursor: pointer;
}

.dialogAudioListen {
  margin-left: 8px;
}

.dialogAudioDownload {
  margin-left: 5px;
}

js

var app = new Vue({
  el: ".app",
  data() {
    return {
      time: "00:00",
      duration: "00:00",
      progressStyle: { width: "" },
      dotStyle: { left: "" },
      audioUrl: "http://file.duzhai.net/Files/Audio/2017-08/af01ab05-d112-4ad7-9cff-2cfecced5bc6.mp3",
      audioImg: "./dialogDetailPlay.png",
      dialogAudioListenGroup: ["./callRecordListen.png", "./quite.png"],
      imgIndex: 0,
    }
  },

  //计算属性 切换静音图片
  computed: {
    dialogAudioListen() {
      return this.dialogAudioListenGroup[this.imgIndex]
    }
  },

  methods: {
    //播放暂停控制
    playAudio() {
      let recordAudio = this.$refs.recordAudio; //获取audio元素
      if (recordAudio.paused) {
        this.audioImg = "./dialogDetailPause.png"
        recordAudio.play();
      } else {
        this.audioImg = "./dialogDetailPlay.png"
        recordAudio.pause();
      }
    },

    //进度条更新
    timeUpdate() {
      this.duration = this.transTime(this.$refs.recordAudio.duration);
      let timeStr = parseInt(this.$refs.recordAudio.currentTime);
      this.time = this.transTime(timeStr);
      let scales = this.$refs.recordAudio.currentTime / this.$refs.recordAudio.duration;
      this.progressStyle.width = scales * 100 + '%';
      this.dotStyle.left = scales * 100 + '%';
    },

    //播放结束
    onEnded() {
      this.audioImg = "./dialogDetailPlay.png";
      this.time = "00:00";
      this.progressStyle.width = 0;
      this.dotStyle.left = 0;
    },

    //用户可以开始播放audio
    canPlay() {
      //获取audio音频文件总时长 并设置到界面并解决出现 NAN 的问题
      this.duration = this.transTime(this.$refs.recordAudio.duration);
    },

    //静音控制
    listenDialogAudio() {
      this.imgIndex = (this.imgIndex + 1) % (this.dialogAudioListenGroup).length;
      if (this.dialogAudioListen == "./quite.png") {
        this.$refs.recordAudio.volume = 0;
      } else {
        this.$refs.recordAudio.volume = 1;
      }
    },

    //鼠标点击移动播放进度
    controlAudioProgress(event) {
      let audio = this.$refs.recordAudio;
      let dialogAudioProgress = this.$refs.dialogAudioProgress;
      if (!audio.paused || audio.currentTime != 0) {
        let pgsWidth = parseFloat(window.getComputedStyle(dialogAudioProgress, null).width.replace('px', ''));
        let rate = event.offsetX / pgsWidth;
        audio.currentTime = audio.duration * rate;
        this.timeUpdate();
      }
    },

    //下载音频
    downloadCallRecord() {
      console.log("下载...");
    },

    //时间转换
    transTime(value) {
      let time = "";
      let h = parseInt(value / 3600);
      value %= 3600;
      let m = parseInt(value / 60);
      let s = parseInt(value % 60);
      if (h > 0) {
        time = this.formatTime(h + ":" + m + ":" + s);
      } else {
        time = this.formatTime(m + ":" + s);
      }
      return time;
    },

    //时间格式化
    formatTime(value) {
      let time = "";
      let s = value.split(':');
      let i = 0;
      for (; i < s.length - 1; i++) {
        time += s[i].length == 1 ? ("0" + s[i]) : s[i];
        time += ":";
      }
      time += s[i].length == 1 ? ("0" + s[i]) : s[i];
      return time;
    }
  },
})

注意点

  • onselectstart 禁止用户选中网页上的内容。
    用户点击进度条位置不会选中其他内容
  • @canplay 设置audio总时长并防止出现 NAN
  • @ended 视频播放完毕后应回到初始状态
  • computed 设置静音图片资源。 音频的volume默认值是1

写到最后

其实,实现自定义内容很简单,主要就是界面与js逻辑控制的结合,只要弄清楚元素对应
的API并加以改进 就可实现很多想要的功能。希望本文可以帮到您,感谢。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,312评论 5 473
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,578评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,337评论 0 333
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,134评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,161评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,303评论 1 280
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,761评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,421评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,609评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,450评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,504评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,194评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,760评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,836评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,066评论 1 257
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,612评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,178评论 2 341