最近在自学vue,打算本身仿一个项目来实战一下,因为本人很喜欢听歌,因此就选择了网易云音乐,在这与你们分享一下本身所遇到的问题,其中也有些不足之处也但愿你们提一些宝贵的意见,互相学习,一块儿进步。css
Vue:采用Vue的语法前端
Vuex:实现不一样组件之间的状态共享vue
vue-router:单页应用路由管理必备ios
axios:发起http请求git
SASS(SCSS):css预处理语言github
因为时间有限,只是作了个页面的播放功能,其中用到了网易云音乐的API网易云,有兴趣的能够去玩玩,其中也涉及到了一些知识点,在这与你们分享一下。vue-router
整个效果: axios
这就是一个header组件,一个footer组件,一个musicList组件和一个paly组件组成的单页面。api
我这是从网易云音乐api扒出来的,扒出来以后新建一个文件,把数据放进去,以后经过axios获取,部分代码以下:bash
actions: {
getData({ commit,state }) {
if (localStorage.musics !== '[]' && localStorage.musics) {
state.musicData = JSON.parse(localStorage.musics);
return;
}
return new Promise((resolve, reject) => {
Vue.axios.get('music-data')
.then (res => {
if (res.data.error === 0) {
state.musicData = res.data.musicData;
localStorage.musics = JSON.stringify(state.musicData);
}
})
.then(() => {
commit('toggleMusic',0)
});
resolve();
});
}
}
复制代码
我是在这删除这个图标下绑定了一个事件,主要就二句代码:
<span v-on:click="del(index)" class="del-icon"></span>
在methods定义del事件就行了
del(index){
this.$store.commit('del',index);
}
复制代码
尾部的播放功能我一开始遇到了一个难题就是如何获取歌曲的时间和控制播放的进度。后来经过查找资料和百度解决了
获取歌曲时间的部分代码以下:
<span class="start">{{transformTime(now)}}</span>
js部分代码
this.nativeAudio = document.querySelector('audio');
this.nativeAudio.addEventListener('play', () => {
this.totalTime = this.transformTime(this.nativeAudio.duration);
this.now = this.nativeAudio.currentTime;
setInterval(() => {
this.now = this.nativeAudio.currentTime;
}, 1000)
})
transformTime(seconds) {
let m, s;
m = Math.floor(seconds / 60);
m = m.toString().length == 1 ? ('0' + m) : m;
s = Math.floor(seconds - 60 * m);
s = s.toString().length == 1 ? ('0' + s) : s;
return m + ':' + s;
}
复制代码
控制播放进度的部分代码以下
changeTime(event) {
let progressBar = this.$refs.progressBar;
let coordStart = progressBar.getBoundingClientRect().left; //getBoundingClientRect()方法返回元素的大小及其相对于视口的位置
let coordEnd = event.pageX;
this.nativeAudio.currentTime = (coordEnd - coordStart) / progressBar.offsetWidth * this.nativeAudio.duration;
this.now = this.nativeAudio.currentTime;
this.nativeAudio.play();
this.$store.commit('play', true);
},
touchMove(event) {
let progressBar = this.$refs.progressBar;
let coordStart = progressBar.getBoundingClientRect().left;
let coordEnd = event.touches[0].pageX;
this.$refs.now.style.width = ((coordEnd - coordStart) / progressBar.offsetWidth).toFixed(3) * 100 + '%'; //toFixed(3)保留小数点后3位
},
touchEnd(event) {
this.nativeAudio.currentTime = this.$refs.now.style.width.replace('%', '')/100 * this.nativeAudio.duration;
this.now = this.nativeAudio.currentTime;
this.nativeAudio.play();
this.$store.commit('play', true);
},
复制代码
换肤主要提供了四种颜色,红色 蓝色 黑色 和绿色,样式使用的是flex布局,主要css代码以下:
.skin {
position: absolute;
display: flex;
flex-direction: column;
bottom: 50px;
right: 15px;
width: 30px;
.skin-colors {
flex: 4;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
.selected {
border: 1px solid white;
}
i {
flex: 1;
display: inline-block;
width: 20px;
height: 20px;
cursor: pointer;
border-radius: 10px;
margin-bottom: 5px;
}
i.one {
background-color: #B72712;
}
i.two {
background-color: #1565C0;
}
i.three {
background-color: #212121;
}
i.four {
background-color: #1B5E20;
}
}
.icon-skin {
flex: 1;
width: 100%;
height: 30px;
background-repeat: no-repeat;
background-size: contain;
margin-top: 3px;
cursor: pointer;
}
.icon-skin-red {
background-image: url('./skinRed.svg');
}
.icon-skin-green {
background-image: url('./skinGreen.svg');
}
.icon-skin-blue {
background-image: url('./skinBlue.svg');
}
.icon-skin-black {
background-image: url('./skinBlack.svg');
}
复制代码
部分代码以下:
prev() {
this.audio.index = this.audio.index === 0 ? this.musicData.length - 1 : (--this.audio.index);
this.$store.commit('toggleMusic', this.audio.index);
}
next() {
this.audio.index = this.audio.index === this.musicData.length - 1 ? 0 : (++this.audio.index);
this.$store.commit('toggleMusic', this.audio.index);
}
复制代码
总结:经过模仿这个项目更加清楚地了解各组件以前的使用和不一样组件的状态共享。固然也遇到了一些坑,文章写到这里,也没有彻底写完,只写了一个单页面,但也算是一个小小的总结,接下来附上个人源码:项目源码,有兴趣的朋友能够看看顺便帮忙点个star和fork,也但愿能帮助到一些朋友。做为一名快要成为大四的学生,时间真的宝贵,对待学习也不敢懈怠,若是你们有什么好的想法的话能够联系个人qq:137032979.码字不容易,但愿你们点个赞。前端路漫漫,与君共勉之。