溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

vue怎么實(shí)現(xiàn)網(wǎng)易云音樂在線播放和下載功能

發(fā)布時(shí)間:2021-04-02 11:20:31 來源:億速云 閱讀:270 作者:小新 欄目:web開發(fā)

小編給大家分享一下vue怎么實(shí)現(xiàn)網(wǎng)易云音樂在線播放和下載功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

vue實(shí)現(xiàn)的網(wǎng)易云音樂在線播放和下載功能,具體如下:

效果如圖:

vue怎么實(shí)現(xiàn)網(wǎng)易云音樂在線播放和下載功能

完整代碼:

<!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>Document</title>
  <style lang="">
    html,
    body {
      height: 100%;
      padding: 0;
      margin: 0;
    }
    #app {
      height: 100%;
      display: flex;
    }
    #app>#left {
      flex: 1;
      background-color: skyblue;
      text-align: center;
      /* 超出滾動 */
      overflow: scroll;
    }
    #app>#right {
      flex: 1;
      background-color: orange;
    }
    ul {
      list-style: none;
      padding: 0;
    }
    input {
      width: 469px;
      height: 56px;
      margin: 10px auto;
      border-radius: 10px;
      outline: none;
      font-size: 24px;
      border: 0;
      padding-left: 15px;
    }
    #left li {
      width: 451px;
      /* height: 35px; */
      margin: 0 auto;
      font-weight: 700;
      border: 2px solid black;
      line-height: 35px;
      color: white;
      background-color: cadetblue;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      max-height: 35px;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
    }
    #left li:hover {
      cursor: pointer;
      background-color: greenyellow;
      color: red;
    }
    #right {
      position: relative;
      overflow: scroll;
    }
    audio {
      /* position: absolute;
      left: 50%;
      transform: translateX(-50%) translateY(46px); */
      display: block;
      margin: 0 auto;
    }
    /* li標(biāo)簽過渡的樣式 */
    .list-item {
      display: inline-block;
      margin-right: 10px;
    }
    .list-enter-active,
    .list-leave-active {
      transition: all 1s;
    }
    .list-enter,
    .list-leave-to{
      opacity: 0;
      transform: translateX(100px);
    }
    /* 設(shè)置專輯圖片樣式 */
    .cover{
      width: 260px;
      height: 260px;
      border-radius: 50%;
      display: block;
      margin: 10px auto;
      /* transform: translateX(-50%) translateY(10px); */
    }
    /* 動畫 */
    @keyframes autoRotate{
      to{
        transform: rotateZ(360deg);
      }
    }
    /* 動畫播放樣式 */
    .autoRotate{
      /* 動畫名,一直播放iteration(一直重復(fù)),勻速(timing),時(shí)間2s(duration),狀態(tài)(running) */
      animation-name:autoRotate;
      animation-iteration-count:infinite;
      animation-timing-function: linear;
      animation-duration:2s;
      animation-play-state:running;
    }
    /* 動畫狀態(tài) */
    .pause{
      animation-play-state:paused;
    }
    /* 評論 */
    .comment{
      height: 150px;
      /* background-color: skyblue; */
    }
    .comment li{
      display: flex;
      padding: 5px;
    }
    .comment li .left{
      width: 120px;
      height: 120px;
    }
    .comment li .left img{
      width: 100px;
    }
    .comment li a{
      text-decoration: none;
      font-weight: bold;
      color: crimson;
    }
  </style>
</head>
<body>
  <div id="app">
    <!-- 左邊 -->
    <div id="left">
      <input type="text" value="請輸入你要搜索的歌名" v-model="inputValue" @keyup.enter="search">
        <!-- 給li添加過渡 ;v-on:after-enter="afterEnter":鉤子函數(shù)-->
        <transition-group name="list" tag="ul" v-on:after-enter="afterEnter">
        <!-- play(item.id):把id傳過去 -->
        <li v-for="(item, index) in musicList" :key="item.id" @dblclick="playMusic(item.id,item.album.id)" : >
          {{item.name}}-----演唱者:{{item.artists[0].name}}
        </li>
        </transition-group>
    </div>
    <!-- 右邊,播放 -->
    <div id="right">
      <!-- 專輯頁面 -->
      <img :src="picUrl"  class="cover autoRotate" :class="{pause:isPause}">
      <!-- autoplay:自動播放,controls顯示控件 ;@play="play"是自定義方法-->
      <audio :src="songUrl" autoplay controls @play="play" @pause="pause" ></audio>
      <h4>精彩評論</h4>
      <div class="comment">
          <ul>
            <!-- 遍歷數(shù)組時(shí),需要?jiǎng)赢嫊r(shí)才用到key -->
              <li v-for="(item, index) in comments" >
                <div class="left">
                  <img :src="item.user.avatarUrl" >
                </div>
                <div class="right">
                  <a href="#" rel="external nofollow" >{{item.user.nickname}}</a>
                  <p>{{item.content}}</p>
                </div>
              </li>
          </ul>
      </div>
    </div>
  </div>
  rightv>
</body>
<!-- 導(dǎo)入vue -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<!-- 導(dǎo)入vue插件 -->
<script src="https://cdn.jsdelivr.net/npm/vue-resource@1.5.1"></script>
<script>
  //代碼
  /*
    音樂播放器
    需求1:
      搜索歌曲
      發(fā)送網(wǎng)絡(luò)請求
      回調(diào)函數(shù)函數(shù)中渲染數(shù)據(jù)
      有動畫
    需求2:
      雙擊播放歌曲
      根據(jù)id調(diào)用接口
      查詢數(shù)據(jù)
      通過audio播放歌曲
      獲取專輯的信息 進(jìn)而獲取封面 展示給用戶
    需求3
      播放歌曲時(shí)
        封面轉(zhuǎn)動
      暫停播放時(shí)
        封面停止轉(zhuǎn)動
    步驟:
      1.先寫動畫樣式,動畫命名為autoRotate,因?yàn)槭且恢边\(yùn)動,所以使用animation;
      2.同時(shí)寫一個(gè)暫停的樣式,命名為pause,給data添加一個(gè)isPause來存值,默認(rèn)給一個(gè)false
      3.添加運(yùn)動和暫停的步驟是添加上面的兩個(gè)類,但是pause要使用v-bind指令來設(shè)置屬性;
      4.在audio音頻里添加播放和暫停的點(diǎn)擊方法,在對應(yīng)的方法里設(shè)置對應(yīng)的布爾值;
    需求4
      點(diǎn)擊播放歌曲
      同時(shí)獲取這首歌的評論
    步驟:1.在數(shù)據(jù)中聲明一個(gè)comments的空數(shù)組,用來存評論內(nèi)容
      2.在播放方法中寫獲取評論的接口
      3.在響應(yīng)體里將內(nèi)容賦值給聲明的數(shù)組
  */
  let app = new Vue({
    el: "#app",
    data: {
      inputValue: '',//輸入的值
      musicList: [], //存儲歌列表
      songUrl: '',//播放歌曲的url
      picUrl:'',//獲取專輯信息
      isPause:false,//專輯是否暫停
      comments:[]//評論內(nèi)容
    },
    methods: {
      // li標(biāo)簽過渡的事件
      randomIndex: function () {
        return Math.floor(Math.random() * this.items.length)
      },
      add: function () {
        this.items.splice(this.randomIndex(), 0, this.nextNum++)
      },
      remove: function () {
        this.items.splice(this.randomIndex(), 1)
      },
      //搜索歌曲事件
      search() {
        //調(diào)用接口
        this.$http.get(`https://autumnfish.cn/search?keywords=${this.inputValue}`).then(response => {
          // console.log(response);
          //將結(jié)果添加到musicList中
          this.musicList = response.body.result.songs;
        }, response => {
          // error callback
          alert("出錯(cuò)了")
        });
      },
      // 雙擊播放歌曲事件,接收傳過來的id
      playMusic(id,albumId) {
        //獲取歌曲的url
        this.$http.get(`https://autumnfish.cn/song/url?id=${id}`).then(response => {
          // console.log(response);
          //將結(jié)果添加到musicList中
          this.songUrl = response.body.data[0].url;
        }, response => {
          // error callback
          alert("出錯(cuò)了")
        });
        // 獲取專輯信息
        this.$http.get(`https://autumnfish.cn/album?id=${albumId}`).then(res=>{
          this.picUrl=res.body.album.blurPicUrl;
        }),err=>{}
        //獲取評論內(nèi)容接口
        this.$http.get(`https://autumnfish.cn/comment/music?id=${id}&limit=1`).then(res=>{
          console.log(res);
          this.comments=res.body.hotComments;
        }),err=>{
          alert('信息錯(cuò)誤')
        }
      },
      //鉤子函數(shù):動畫執(zhí)行完后去除了style屬性,不去掉會卡頓
      afterEnter(el){
        el.style='';
      },
      // 專輯圖片旋轉(zhuǎn)事件
      play(){
        console.log('播放');
        this.isPause=false;
      },
      pause(){
        console.log('暫停');
        this.isPause=true;
      }
    },
  })
</script>
</html>

以上是“vue怎么實(shí)現(xiàn)網(wǎng)易云音樂在線播放和下載功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI