案例:用vue開發網易雲音樂(已實現線上播放和下載)
阿新 • • 發佈:2019-01-08
效果如圖:
完整程式碼:
<!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標籤過渡的樣式 */
.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);
}
/* 設定專輯圖片樣式 */
.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(一直重複),勻速(timing),時間2s(duration),狀態(running) */
animation-name:autoRotate;
animation-iteration-count:infinite;
animation-timing-function: linear;
animation-duration:2s;
animation-play-state:running;
}
/* 動畫狀態 */
.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":鉤子函式-->
<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)" :style="{'transition-delay':index*100+'ms'}" >
{{item.name}}-----演唱者:{{item.artists[0].name}}
</li>
</transition-group>
</div>
<!-- 右邊,播放 -->
<div id="right">
<!-- 專輯頁面 -->
<img :src="picUrl" alt="" class="cover autoRotate" :class="{pause:isPause}">
<!-- autoplay:自動播放,controls顯示控制元件 ;@play="play"是自定義方法-->
<audio :src="songUrl" autoplay controls @play="play" @pause="pause" ></audio>
<h3>精彩評論</h3>
<div class="comment">
<ul>
<!-- 遍歷陣列時,需要動畫時才用到key -->
<li v-for="(item, index) in comments" >
<div class="left">
<img :src="item.user.avatarUrl" alt="">
</div>
<div class="right">
<a href="#">{{item.user.nickname}}</a>
<p>{{item.content}}</p>
</div>
</li>
</ul>
</div>
</div>
</div>
rightv>
</body>
<!-- 匯入vue -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<!-- 匯入vue外掛 -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script>
//程式碼
/*
音樂播放器
需求1:
搜尋歌曲
傳送網路請求
回撥函式函式中渲染資料
有動畫
需求2:
雙擊播放歌曲
根據id呼叫介面
查詢資料
通過audio播放歌曲
獲取專輯的資訊 進而獲取封面 展示給使用者
需求3
播放歌曲時
封面轉動
暫停播放時
封面停止轉動
步驟:
1.先寫動畫樣式,動畫命名為autoRotate,因為是一直運動,所以使用animation;
2.同時寫一個暫停的樣式,命名為pause,給data新增一個isPause來存值,預設給一個false
3.新增運動和暫停的步驟是新增上面的兩個類,但是pause要使用v-bind指令來設定屬性;
4.在audio音訊裡新增播放和暫停的點選方法,在對應的方法裡設定對應的布林值;
需求4
點選播放歌曲
同時獲取這首歌的評論
步驟:1.在資料中宣告一個comments的空陣列,用來存評論內容
2.在播放方法中寫獲取評論的介面
3.在響應體裡將內容賦值給宣告的陣列
*/
let app = new Vue({
el: "#app",
data: {
inputValue: '',//輸入的值
musicList: [], //儲存歌列表
songUrl: '',//播放歌曲的url
picUrl:'',//獲取專輯資訊
isPause:false,//專輯是否暫停
comments:[]//評論內容
},
methods: {
// li標籤過渡的事件
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() {
//呼叫介面
this.$http.get(`https://autumnfish.cn/search?keywords=${this.inputValue}`).then(response => {
// console.log(response);
//將結果新增到musicList中
this.musicList = response.body.result.songs;
}, response => {
// error callback
alert("出錯了")
});
},
// 雙擊播放歌曲事件,接收傳過來的id
playMusic(id,albumId) {
//獲取歌曲的url
this.$http.get(`https://autumnfish.cn/song/url?id=${id}`).then(response => {
// console.log(response);
//將結果新增到musicList中
this.songUrl = response.body.data[0].url;
}, response => {
// error callback
alert("出錯了")
});
// 獲取專輯資訊
this.$http.get(`https://autumnfish.cn/album?id=${albumId}`).then(res=>{
this.picUrl=res.body.album.blurPicUrl;
}),err=>{}
//獲取評論內容介面
this.$http.get(`https://autumnfish.cn/comment/music?id=${id}&limit=1`).then(res=>{
console.log(res);
this.comments=res.body.hotComments;
}),err=>{
alert('資訊錯誤')
}
},
//鉤子函式:動畫執行完後去除了style屬性,不去掉會卡頓
afterEnter(el){
el.style='';
},
// 專輯圖片旋轉事件
play(){
console.log('播放');
this.isPause=false;
},
pause(){
console.log('暫停');
this.isPause=true;
}
},
})
</script>
</html>
如果介面不能使用:請登入https://github.com/huanggengzhong/NeteaseCloudMusicApi,重新下載開啟伺服器即可(不會可以@我).