微信小程序自定义样式的播放器

我使用的是wepy的框架,然后代码如下。。。包括拖拉进度条播放,暂停,播放,等功能,样式模仿的是网易云音乐光盘转动效果,可将黑圆圈换成一个光盘图片就更好看了

<style lang="less">
.audio-poster {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 76rpx;
  height: 76rpx;
  box-sizing: border-box;
  margin: 10rpx;
  background: #101010;
  border-radius: 50%;
  .poster-img {
    width: 48rpx;
    height: 48rpx;
    border-radius: 50%;
  }
}
.audio-box {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: #f2f2f2;
  padding: 10rpx 0;
  align-self: flex-start;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.progress-bar {
  display: flex;
  align-items: center;
  .progress-now {
    width: 70rpx;
    text-align: center;
    font-size: 24rpx;
  }
  .progress-line {
    position: relative;
    width: 426rpx;
    display: flex;
    align-items: center;
    .progress-line-active {
      display: inline-block;
      width: 0rpx;
      font-size: 0;
      border-top: 1px solid #e51c23;
    }
    .progress-circle {
      position: absolute;
      left: 0rpx;
      width: 30rpx;
      height: 30rpx;
      box-sizing: border-box;
      background: #e51c23;
      border-radius: 50%;
    }
    .progress-line-total {
      display: inline-block;
      width: 226rpx;
      font-size: 0;
      border-top: 1px solid #bbb;
    }
  }
  .audio-title {
    position: absolute;
    top: 20rpx;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24rpx;
  }
  .play-button {
    color: #e51c23;
    margin-left: 16rpx;
    font-size: 48rpx;
  }
}
</style>
<template>
  <view class="audio-box">
    <view class="audio-poster" style=" {{playState?'animation: fucks 2s infinite linear;':''}}  ">
      <image class="poster-img" src="http://y.gtimg.cn/music/photo_new/T002R300x300M000003rsKF44GyaSk.jpg?max_age=2592000"/>
    </view>
    <view class="progress-bar">
      <text class="audio-title">东京塔</text>
      <text class="progress-now">{{currentTime}}</text>
      <view class="progress-line">
        <text class="progress-line-active" style="width:{{circleLeft}}rpx"/>
        <text class="progress-circle"   @touchmove.stop="dragMove" @touchstart.stop="dragStart"  style="left:{{circleLeft}}rpx"></text>
        <text class="progress-line-total" style="width:{{426-circleLeft}}rpx"/>
      </view>
      <text class="progress-now">{{duration}}
      </text>
      <text wx:if="{{!playState}}" @tap="play" class="fa fa-play play-button" />
      <text wx:if="{{playState}}" @tap="pause" class="fa fa-pause play-button" />
    </view>
  </view>
</template>
<script>
import wepy from 'wepy';
let startPageX = 0;
export default class NewAudio extends wepy.component {
  props = {};
  data = {
    playState: true,
    innerAudioContext: wepy.createInnerAudioContext(),
    currentTime: '00:00',
    duration: '00:00',
    circleLeft: 0
  };
  methods = {
    play: () => {
      this.innerAudioContext.play();
      this.playState = true;
      this.$apply();
    },
    pause() {
      this.innerAudioContext.pause();
      this.playState = false;
      this.$apply();
    },
    stop() {
      this.innerAudioContext.stop();
    },
    dragStart(e) {
      startPageX = e.touches[0].clientX;
    },
    dragMove(e) {
      // console.log(e.touches[0].clientX);
      let newLeft = 0;
      if (
        (this.circleLeft >= startPageX - e.touches[0].clientX &&
          startPageX - e.touches[0].clientX >= 0) ||
        (this.circleLeft <= 396 + startPageX - e.touches[0].clientX &&
          startPageX - e.touches[0].clientX <= 0)
      ) {
        newLeft = (e.touches[0].clientX - startPageX) * 2;
        startPageX = e.touches[0].clientX;
        this.circleLeft = newLeft + this.circleLeft;
        let newPosition = this.innerAudioContext.currentTime;
        newPosition = this.circleLeft / 396 * this.innerAudioContext.duration;
        this.innerAudioContext.seek(newPosition);
        this.$apply();
        if (this.innerAudioContext.paused) {
          this.innerAudioContext.play();
          this.playState = true;
          this.$apply();
        }
      }
    },
    updateTime: () => {
      this.circleLeft =
        this.innerAudioContext.currentTime /
        this.innerAudioContext.duration *
        396;
      this.currentTime = `${
        Math.round(this.innerAudioContext.currentTime / 60) < 10
          ? `0${Math.round(this.innerAudioContext.currentTime / 60)}`
          : `${Math.round(this.innerAudioContext.currentTime / 60)}`
      }:${
        Math.round(this.innerAudioContext.currentTime % 60) < 10
          ? `0${Math.round(this.innerAudioContext.currentTime % 60)}`
          : `${Math.round(this.innerAudioContext.currentTime % 60)}`
      }`;
      this.duration = `${
        Math.round(this.innerAudioContext.duration / 60) < 10
          ? `0${Math.round(this.innerAudioContext.duration / 60)}`
          : `${Math.round(this.innerAudioContext.duration / 60)}`
      }:${
        Math.round(this.innerAudioContext.duration % 60) < 10
          ? `0${Math.round(this.innerAudioContext.duration % 60)}`
          : `${Math.round(this.innerAudioContext.duration % 60)}`
      }`;
      this.$apply();
      setTimeout(this.methods.updateTime, 1000);
    }
  };
  onLoad() {
    this.innerAudioContext = wepy.createInnerAudioContext();
    this.innerAudioContext.src =
      'http://ws.stream.qqmusic.qq.com/M500001VfvsJ21xFqb.mp3?guid=ffffffff82def4af4b12b3cd9337d5e7&uin=346897220&vkey=6292F51E1E384E061FF02C31F716658E5C81F5594D561F2E88B854E81CAAB7806D5E4F103E55D33C16F3FAC506D1AB172DE8600B37E43FAD&fromtag=46';

    this.innerAudioContext.onPlay(() => {
      this.methods.updateTime();
    });
    this.innerAudioContext.autoplay = true;
    this.innerAudioContext.onError(res => {
      console.log(res.errMsg);
      console.log(res.errCode);
    });
  }
}
</script>

wx:18362981113 经测试可正常使用,有问题可联系我哦~~

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

推荐阅读更多精彩内容

  • 什么是微信小程序 腾讯公司于2016年9月21日开始微信小程序内测,一时间小程序的讨论热度不断。网络上流传一张张小...
    centuryscr阅读 5,557评论 0 3
  • 微信小程序在无论在功能、文档及相关支持方面,都是优于前面几种微信账号类型,它提供了很多原生程序才有的接口,使得我们...
    伍华聪_开发框架阅读 1,600评论 0 53
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,089评论 4 62
  • 今天一位领导感叹,后悔15年前没有买下鸟市郊区的一个农家小院,要不然现在也是身价几百万的财主了。问他当初为何不买,...
    Mr__Pan阅读 210评论 0 1
  • 特别的日子,特别的纪念 3月8日下午,我校举行了“庆三八妇女节”主题活动,下午三时许全校所有女教师在...
    华丽丽宝阅读 226评论 0 2