vue移动端仿音乐播放器

工作之余查了很多资料一步步摸索出来的,先感谢各位大佬。
仿QQ音乐做的,不是100%还原,不过基本原理都在这了,结合之前的歌词滚动组件一起使用
持续更新
效果图


专辑+歌词播放

纯歌词播放

页面布局拆分

总体分为
1顶部歌名+歌手的top-bar模块+模糊背景
2专辑+歌词滚动模块
3进度条+时间模块
4播放控件模块,播放,暂停,上一曲,下一曲。

需要注意音频初始化audioInit

mounted() {
        const audio = document.getElementById("audio");
        this.init();
        this.audioInit();
        this.swiper = new Swiper(this.activeClass, {
            autoplay: false, //自动播放
            loop: false, //循环播放
        });
    },
method: {
        audioInit() {
            let that = this;
            // 音频或视频文件已经就绪可以开始
            audio.addEventListener("canplay", () => {
                console.log("canplay");
                that.audioDuration = that.TimeToString(audio.duration);
                let buffered = audio.buffered.end(0)
            });
            let progressL = this.$refs.track.offsetWidth; // 进度条总长
            audio.addEventListener("timeupdate", () => {
                // 当前播放时间
                let compareTime = audio.currentTime;
                let buffered = audio.buffered.end(0)
                for (let i = 0; i < that.lyricInfo.length; i++) {
                    if (compareTime > parseInt(that.lyricInfo[i].time)) {
                        const index = that.lyricInfo[i].index;
                        if (i === parseInt(index)) {
                            that.lyricIndex = i;  //获取当前播放歌曲的歌词index
                        }
                    }
                }
                that.currentTime = that.TimeToString(audio.currentTime);
                that.audioPercent =
                    audio.currentTime / audio.duration.toFixed(3);
                that.thumbTranslateX = that.audioPercent * 4;
            });
            audio.addEventListener("ended", () => {
                that.playIndex =
                    that.playIndex + 1 >= that.songList.length
                        ? 0
                        : that.playIndex + 1;
                that.songInfo = that.songList[that.playIndex];
                that.GetLyric(that.songInfo.id);
                setTimeout(() => {
                    audio.play();
                }, 100);
            });
        },
}

第一部分

需要定一个固定在页面的div,采用fixed布局

<template>
    <div class="main-page" ref="MainRef">
        <div
            class="background-flitter"
            :style="`background-image: url(${songInfo.cover})`"
        ></div>
        <div class="top-bar">
            <p>{{ songInfo.name }}</p>
            <p style="font-size: 0.24rem;font-weight: 500">{{ songInfo.artistsName }}</p>
        </div>
    </div>
</template>

具体的歌曲信息如下

data: (){
  return {
                {
                    albumId: 93162249,
                    albumTitle: "STRAY SHEEP",
                    artistsName: "米津玄師",
                    cover:"https://p1.music.126.net/6mhlWCOOQkT0xDjjuCLW7g==/109951165181187586.jpg",
                    id: 1466598056,
                    index: 7,
                    name: "Lemon",
                    url:"https://music.163.com/song/media/outer/url?id=1466598056.mp3",
                },
  }
}
<style lang="less" scoped>
.main-page {
    width: 100%;
    height: 100vh;
    position: relative;
    background: rgba(15, 15, 15, 0.3);
    .background-flitter {
        position: fixed;
        z-index: -2;
        background-repeat: no-repeat;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        background-size: cover;
        background-position: 50%;
        filter: blur(0.16rem);
        opacity: 0.7;
        overflow: hidden;
        box-sizing: border-box;
    }
    .top-bar {
        width: 100%;
        height: 1.2rem;
        text-align: center;
        color: #fff;
        font-size: 0.32rem;
        line-height: 0.6rem;
        font-weight: 600;
    }
}
</style>

至此完成整体背景和top-bar部分

第二部分,专辑+歌词滚动

左右滑动切换用到了swiper组件,专辑+歌词和纯歌词分别放在两个slide就可以了。
先固定一个歌词容器,与top-bar同级,具体代码可以参考歌词组件封装来看,都是复用的代码。

        <div class="lyric-container">
            <div class="swiper-contain">
                <div class="swiper-wrapper">
                    <div class="swiper-slide">
                        <div class="disc-cover">
                            <div class="disc" ref="rotate">//ref="rotate"
                                <img :src="songInfo.cover" alt="" />
                            </div>
                        </div>
                        <div class="text-container">
                            <div class="text-list" :style="lyricMiniTop">
                                <p
                                    v-for="(item, index) in lyricInfo"
                                    :key="index"
                                    :style="{
                                        color:
                                            lyricIndex === index
                                                ? colorLight
                                                : color,
                                    }"
                                >
                                    {{ item.lyric }}
                                </p>
                            </div>
                        </div>
                    </div>
                    <div class="swiper-slide">
                        <l-scroll
                            ref="lyric"
                            :color="color"
                            :colorLight="colorLight"
                            :lineHeight="lineHeight"
                            :paddingTop="paddingTop"
                            :fontSize="fontSize"
                            :lyricIndex="lyricIndex"
                            :lyricsList="lyricInfo"
                        ></l-scroll>
                    </div>
                </div>
            </div>
        </div>

歌词滚动之前文章有讲过了,提一下这个唱片旋转的动画吧,给旋转部分添加ref="rotate"

                        .disc {
                            width: 5rem;
                            height: 5rem;
                            border-radius: 50%;
                            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.4);
                            animation: animations1 12s linear infinite forwards;
                            animation-play-state: paused;
                            overflow: hidden;
                            img {
                                width: 100%;
                                height: 100%;
                            }
                        }
                        @keyframes animations1 {
                            from {
                                transform: rotate(0deg);
                            }
                            to {
                                transform: rotate(360deg);
                            }
                        }

在播放事件中添加

        //播放与暂停
        play() {
            if (this.playing) {
                // 播放中,点击则为暂停
                this.playing = false;
                this.$refs.rotate.style.animationPlayState = "paused";
                audio.pause();
            } else {
                // 暂停中,点击则为播放
                this.playing = true;
                this.$refs.rotate.style.animationPlayState = "running";
                audio.play();
            }
        },

到这完成了歌词滚动和切换

第三部分,进度条点击和拖拽控制播放进度(重点)

样式,时长比这些都讲烂了,讲讲点击和拖拽控制播放进度吧
拖拽功能:给拖拽按钮,也就是示例图的白色进度按钮添加三个事件

                <div
                    class="play-point"
                    @touchstart.stop.prevent="touchstart"
                    @touchmove.stop.prevent="touchmove"
                    @touchend.stop.prevent="touchend"
                    :style="{
                        transform: 'translateX(' + thumbTranslateX + 'rem)',
                    }"
                ></div>
        //控制播放进度
        SetProgress(t) {
            audio.currentTime = audio.duration * t;
        },
        touchstart(event) {
            let progressL = this.$refs.track.offsetWidth ; // 进度条总长
            let allL = this.$refs.MainRef.offsetWidth ; // 页面总长
            let half = (allL-progressL)/2
            console.log("开始", progressL, allL, half)
            //记录开始的X轴坐标
            if (this.startXFirst) {
                this.startX = half;
                this.startXFirst = false;
            }
        },
        touchmove(event) {
            let moveX = parseInt(
                (event.changedTouches[0].clientX - this.startX)
            );
            let progressL = this.$refs.track.offsetWidth; // 进度条总长
            let percent = (moveX / progressL).toFixed(2); //拖动%比
            if(percent>1){
                percent = 1
            }
            this.audioPercent = percent; //音频播放%
            this.thumbTranslateX = this.audioPercent * 4; //计算滑块位移
        },
        touchend(event) {
            console.log("结束",event)
            this.finalX = parseInt(
                event.changedTouches[0].clientX - this.startX
            );
            let progressL = this.$refs.track.offsetWidth; // 进度条总长
            let time = (this.finalX / progressL).toFixed(2);
            if(time>1){
                time = 1
            }
            this.SetProgress(time);
        },

点击实现进度则简单多了,

            <div
                class="progress"
                @click="HandleProgressClick($event)"
                ref="track"
            >
                <div
                    class="progress_box"
                    :style="{ width: audioProgressPercent }"
                ></div>
                <div
                    class="play-point"
                    @touchstart.stop.prevent="touchstart"
                    @touchmove.stop.prevent="touchmove"
                    @touchend.stop.prevent="touchend"
                    :style="{
                        transform: 'translateX(' + thumbTranslateX + 'rem)',
                    }"
                ></div>
            </div>
        //点击进度条
        HandleProgressClick(event) {
            let progressL = this.$refs.track.offsetWidth; // 进度条总长
            let clickX = event.offsetX;
            let time = (clickX / progressL).toFixed(2);
            this.SetProgress(time);
        },

OK ,第三部分完成

第四部分

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