0


基于Vue&Axios制作音乐播放器(bilibili黑马程序员Vue入门学习记录)

使用Vue制作一个音乐播放器

前言

第一次写,如有不足请指正!

音乐播放器效果展示音乐播放器(密码:He371226)(域名出了点问题,临时使用)

学习链接:黑马程序员vue前端基础教程-4个小时带你快速入门vue_哔哩哔哩_bilibili

Vue

Vue导入

<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>

将vue导入进项目

Vue挂载

<div id="app">

</div>
<script>
var app = new Vue({
el:"#app",
data:{
message:"hello world"//自行定义的message,也可以为egassem
},
methods:{

}
})
</script>

通过el挂载点将Id相互绑定起来,data为其中个人定义的一些值,methods中为个人定义的函数,Vue会管理el选项命中的元素及其内部的后代元素,不能使用HTML和BODY

Vue指令

v-text

通过v-text可以设置标签的文本值(textContent)有两种写法:1.v-text="(data中的message)" 2.{{ data中的message }},第一种替换全部,都可采用字符串拼接。

<div id="app">
      <h2 v-text="message+’!’"></h2>
      <h2>西安{{ message + "! "}}</h2>
    </div>
<script>
var app = new Vue({
            el:"#app",
            data:{
                message:"hello world"
            }
        })
</script>

v-html

设置标签的innerHTML,内容中有html结构会被解析为标签

 <div id="app">
      <p v-html=“content"></p>
    </div>
<script>
var app = new Vue({
            el:"#app",
            data:{
                content:"<a href='#'>hello world</a>"
            }
        })

如上只会显示p标签里有一个hello world的链接

v-on

为元素绑定事件,v-on可以使用@代替,所绑定的方法写在methods中,方法内部通过this关键字可以访问定义在data中数据,方法中可以传入自定义参数,定义方法时需要定义形参来接收传入的实参。

<div id="app">
      <input type="button" value="事件绑定" v-on:click="sayHello">
    </div>
<script>
var app = new Vue({
            el:"#app",
            methods:{
              sayHello:function(){
                alert("hello")
              }
            }
        })
</script>

其中 v-on:click="sayHello" 也可以用 @click="sayHello" 代替

v-show

根据表达值的真假,切换元素的显示和隐藏,原理是修改元素的display,实现显示隐藏,值为true元素显示,值为false元素隐藏,数据改变之后,对应元素的显示状态会同步更新

<div id="app">
      <img src="地址" v-show="true">//显示
      <img src="地址" v-show=“isShow">//不显示
    </div>
<script>
var app = new Vue({
            el:"#app",
            data:{
    isShow:false,
            }
        })
</script>

v-if

根据表达值的真假,切换元素的显示和隐藏,本质是通过操纵dom元素来切换显示状态,表达式的值为true,元素存在于dom树中,为false,从dom树中移除

<div id="app">
      <p v-if="true">我是一个p标签</p>//显示
      <p v-if="isShow">我是一个p标签</p>//不显示
    </div>
<script>
 var app = new Vue({
            el:"#app",
            data:{
          isShow:false
            }
        })
</script>

v-bind

设置元素的属性(比如:src,title,class),完整写法是 v-bind:属性名,简写的话可以直接省略v-bind,只保留 :属性名

<div id="app">
      <img v-bind:src= "imgSrc" >
      <img v-bind:title="imgtitle+’!!!!’">
      <img v-bind:class="isActive?'active':‘’”>
      <img v-bind:class="{active:isActive}">
    </div>
<script>
 var app = new Vue({
            el:"#app",
            data:{
      imgSrc:"图片地址",
      imgTitle:"hello world",
      isActive:false
   }
        })
</script>

v-for

根据数据生成列表结构,常和数组使用,语法是( item,index ) in 数据,数组长度的更新会同步到页面上,是响应式的

<div id="app">
      <ul>
         <li v-for="(item,index) in arr" :title="item">
         {{ index }}{{ item }}
        </li>
         <li v-for="(item,index) in objArr">
         {{ item.name }}
        </li>
      </ul>
    </div>
<script>
 var app = new Vue({
        el: "#app",
        data: {
          arr: [1, 2, 3, 4, 5],
          objArr: [
            { name: "milk" }, 
            { name: "egg" }
            ]
        }
      })
</script>

v-model

获取和设置表单元素的值(双向数据绑定),绑定的数据会和表单元素值相关联

<div id="app">
      <input type="text" v-model="message" />
    </div>
<script>
var app = new Vue({
        el: "#app",
        data: {
          message: "hello world"
        }
      })
</script>
//此时message无论在哪改变,message值始终等于最新的

axios

axios导入

axios是一个功能强大的网络请求库

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

使用get或post方法即可发送对应的请求

then方法中的回调函数会在请求成功或失败时触发

通过回调函数的形参可以获取响应内容,或错误信息

axios使用

 axios.get(地址?查询字符串).then(function(response){},function(err){})

axios.get()是使用get请求,也可以使用post请求,括号中可以请求网页的地址 ? 后通过指定属性找到所需要的值

axios.get().then(f1(),f2())

then中有2个匿名函数,第一个为请求成功,得到的response,第二个为失败,在f1()中可写入请求成功后的步骤

音乐网站代码

HTML

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  <title></title>
  <!-- 样式 -->
  <link rel="stylesheet" href="./css/index.css">
</head>

<body>
  <div class="wrap">
    <!-- 播放器主体区域 -->
    <div class="play_wrap" id="player">
      <div class="search_bar">
        <img src="" alt="" />
        <!-- 搜索歌曲 -->
        <input type="text" autocomplete="off" v-model="query" @keydown.enter="searchMusic" />
      </div>
      <div class="center_con">
        <!-- 搜索歌曲列表 -->
        <div class='song_wrapper'>
          <ul class="song_list">
            <li v-for="item in musicList">
              <a href="#" @click="playMusic(item.id)"></a> 
              <b>{{ item.name }}</b> 
              <span><i v-show="item.mvid!=0" @click="playMv(item.mvid)"></i></span>
            </li>
          </ul>
          <img src="images/line.png" class="switch_btn" alt="">
        </div>
        <!-- 歌曲信息容器 -->
        <div class="player_con" :class="{playing:isPlay}">
          <img src="images/player_bar.png" class="play_bar" />
          <!-- 黑胶碟片 -->
          <img src="images/disc.png" class="disc autoRotate" />
          <img :src="musicCover"  class="cover autoRotate" />
        </div>
        <!-- 评论容器 -->
        <div class="comment_wrapper">
          <h5 class='title'>热门留言</h5>
          <div class='comment_list'>
            <dl v-for="item in hotCom">
              <dt><img :src="item.user.avatarUrl" alt=""></dt>
              <dd class="name">{{item.user.nickname}}</dd>
              <dd class="detail">
                {{item.content}}
              </dd>
            </dl>
          </div>
          <img src="images/line.png" class="right_line">
        </div>
      </div>
      <div class="audio_con">
        <audio :src="musicUrl" @play="play" @pause="pause" ref='audio' controls autoplay loop class="myaudio"></audio>
      </div>
      <div class="video_con" v-show="isShow" >
        <video :src="musicMv"  controls="controls"></video>
        <div class="mask" @click="hide"></div>
      </div>
    </div>
  </div>
  <!-- 开发环境版本,包含了有帮助的命令行警告 -->
  <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
  <!-- 官网提供的 axios 在线地址 -->
  <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  <script src="./js/main.js"></script>
</body>

</html>

CSS

body,
ul,
dl,
dd {
  margin: 0px;
  padding: 0px;
}

.wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg.jpg") no-repeat;
  background-size: 100% 100%;
}

.play_wrap {
  width: 800px;
  height: 544px;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -400px;
  margin-top: -272px;
  /* background-color: #f9f9f9; */
}

.search_bar {
  height: 60px;
  background-color: #1eacda;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 11;
}

.search_bar img {
  margin-left: 23px;
}

.search_bar input {
  margin-right: 23px;
  width: 296px;
  height: 34px;
  border-radius: 17px;
  border: 0px;
  background: url("../images/zoom.png") 265px center no-repeat
    rgba(255, 255, 255, 0.45);
  text-indent: 15px;
  outline: none;
}

.center_con {
  height: 435px;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  position: relative;
}

.song_wrapper {
  width: 200px;
  height: 435px;
  box-sizing: border-box;
  padding: 10px;
  list-style: none;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.song_stretch {
  width: 600px;
}

.song_list {
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}
.song_list::-webkit-scrollbar {
  display: none;
}

.song_list li {
  font-size: 12px;
  color: #333;
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 580px;
  padding-left: 10px;
}

.song_list li:nth-child(odd) {
  background-color: rgba(240, 240, 240, 0.3);
}

.song_list li a {
  display: block;
  width: 17px;
  height: 17px;
  background-image: url("../images/play.png");
  background-size: 100%;
  margin-right: 5px;
  box-sizing: border-box;
}

.song_list li b {
  font-weight: normal;
  width: 122px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.song_stretch .song_list li b {
  width: 200px;
}

.song_stretch .song_list li em {
  width: 150px;
}

.song_list li span {
  width: 23px;
  height: 17px;
  margin-right: 50px;
}
.song_list li span i {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: url("../images/table.png") left -48px no-repeat;
}

.song_list li em,
.song_list li i {
  font-style: normal;
  width: 100px;
}

.player_con {
  width: 400px;
  height: 435px;
  position: absolute;
  left: 200px;
  top: 0px;
}

.player_con2 {
  width: 400px;
  height: 435px;
  position: absolute;
  left: 200px;
  top: 0px;
}

.player_con2 video {
  position: absolute;
  left: 20px;
  top: 30px;
  width: 355px;
  height: 265px;
}

.disc {
  position: absolute;
  left: 73px;
  top: 60px;
  z-index: 9;
}
.cover {
  position: absolute;
  left: 125px;
  top: 112px;
  width: 150px;
  height: 150px;
  border-radius: 75px;
  z-index: 8;
}
.comment_wrapper {
  width: 180px;
  height: 435px;
  list-style: none;
  position: absolute;
  left: 600px;
  top: 0px;
  padding: 25px 10px;
}
.comment_wrapper .title {
  position: absolute;
  top: 0;
  margin-top: 10px;
}
.comment_wrapper .comment_list {
  overflow: auto;
  height: 410px;
}
.comment_wrapper .comment_list::-webkit-scrollbar {
  display: none;
}
.comment_wrapper dl {
  padding-top: 10px;
  padding-left: 55px;
  position: relative;
  margin-bottom: 20px;
}

.comment_wrapper dt {
  position: absolute;
  left: 4px;
  top: 10px;
}

.comment_wrapper dt img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}

.comment_wrapper dd {
  font-size: 12px;
}

.comment_wrapper .name {
  font-weight: bold;
  color: #333;
  padding-top: 5px;
}

.comment_wrapper .detail {
  color: #666;
  margin-top: 5px;
  line-height: 18px;
}
.audio_con {
  height: 50px;
  background-color: #f1f3f4;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.myaudio {
  width: 800px;
  height: 40px;
  margin-top: 5px;
  outline: none;
  background-color: #f1f3f4;
}
/* 旋转的动画 */
@keyframes Rotate {
  from {
    transform: rotateZ(0);
  }
  to {
    transform: rotateZ(360deg);
  }
}
/* 旋转的类名 */
.autoRotate {
  animation-name: Rotate;
  animation-iteration-count: infinite;
  animation-play-state: paused;
  animation-timing-function: linear;
  animation-duration: 5s;
}
/* 是否正在播放 */
.player_con.playing .disc,
.player_con.playing .cover {
  animation-play-state: running;
}

.play_bar {
  position: absolute;
  left: 200px;
  top: -10px;
  z-index: 10;
  transform: rotate(-25deg);
  transform-origin: 12px 12px;
  transition: 1s;
}
/* 播放杆 转回去 */
.player_con.playing .play_bar {
  transform: rotate(0);
}
/* 搜索历史列表 */
.search_history {
  position: absolute;
  width: 296px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.3);
  list-style: none;
  right: 23px;
  top: 50px;
  box-sizing: border-box;
  padding: 10px 20px;
  border-radius: 17px;
}
.search_history li {
  line-height: 24px;
  font-size: 12px;
  cursor: pointer;
}
.switch_btn {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.right_line {
  position: absolute;
  left: 0;
  top: 0;
}
.video_con video {
  position: fixed;
  width: 800px;
  height: 546px;
  left: 50%;
  top: 50%;
  margin-top: -273px;
  transform: translateX(-50%);
  z-index: 990;
}
.video_con .mask {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 980;
  background-color: rgba(0, 0, 0, 0.8);
}
.video_con .shutoff {
  position: fixed;
  width: 40px;
  height: 40px;
  background: url("../images/shutoff.png") no-repeat;
  left: 50%;
  margin-left: 400px;
  margin-top: -273px;
  top: 50%;
  z-index: 995;
}

JS

/*
  1:歌曲搜索接口
    请求地址:https://autumnfish.cn/search
    请求方法:get
    请求参数:keywords(查询关键字)
    响应内容:歌曲搜索结果

  2:歌曲url获取接口
    请求地址:https://autumnfish.cn/song/url
    请求方法:get
    请求参数:id(歌曲id)
    响应内容:歌曲url地址
  3.歌曲详情获取
    请求地址:https://autumnfish.cn/song/detail
    请求方法:get
    请求参数:ids(歌曲id)
    响应内容:歌曲详情(包括封面信息)
  4.热门评论获取
    请求地址:https://autumnfish.cn/comment/hot?type=0
    请求方法:get
    请求参数:id(歌曲id,地址中的type固定为0)
    响应内容:歌曲的热门评论
  5.mv地址获取
    请求地址:https://autumnfish.cn/mv/url
    请求方法:get
    请求参数:id(mvid,为0表示没有mv)
    响应内容:mv的地址
*/
var app = new Vue({
  el: '#player',
  data: {
    query: '',
    musicList: [],
    musicUrl:'',
    musicCover:'',
    hotCom:'',
    musicMv:'',
    isShow:false,
    isPlay:false
  },
  methods: {
    //歌曲搜索
    searchMusic: function () {
      var that = this;
      axios.get("https://autumnfish.cn/search?keywords=" + this.query).then(function (response) {
      that.musicList=response.data.result.songs
      }, function (err) {
        
      })
    },
    //歌曲播放
    playMusic:function(musicId){
      var that=this
      axios.get('https://autumnfish.cn/song/url?id='+musicId).then(function(response){
        that.musicUrl=response.data.data[0].url;
      },function(err){})
      axios.get('https://autumnfish.cn/song/detail?ids='+musicId).then(function(response){
        that.musicCover=response.data.songs[0].al.picUrl;
      },function(err){})
      axios.get('https://autumnfish.cn/comment/hot?type=0&id='+musicId).then(function(response){
        that.hotCom=response.data.hotComments
      },function(err){})
    },
    //播放MV
    playMv:function(mvid){
      var that = this
      axios.get('https://autumnfish.cn/mv/url?id='+mvid).then(function(response){
        that.musicMv=response.data.data.url
        that.isShow=true
      },function(err){})
    },
    //隐藏遮罩层
    hide:function(){
      var that = this
      that.isShow=false;
    },
    //播放
    play:function(){
      this.isPlay=true
    },
    //暂停
    pause:function(){
      this.isPlay=false
    }
  }
})

标签: javascript vue vue.js

本文转载自: https://blog.csdn.net/xxxrsongseven/article/details/124066283
版权归原作者 xxxrsongseven 所有, 如有侵权,请联系我们删除。

“基于Vue&amp;Axios制作音乐播放器(bilibili黑马程序员Vue入门学习记录)”的评论:

还没有评论