当前位置:   article > 正文

简易音乐播放小程序_微信小程序音乐播放器歌词

微信小程序音乐播放器歌词

今天想要分享的一个项目是作者自己在暑假实训期间制作的一款仿网易音乐的音乐播放小程序,将会为大家展示小程序的具体功能以及实现代码,比较适合前端初学者拿来参考。(本人也是技艺不精,若有说的不对的地方,望指摘,勿喷,友好交流)

一、项目介绍

本音乐播放小程序有歌曲列表,个人信息,搜索三个模块

二、小程序的效果图

歌曲列表界面:

这部分相当于一个简易的首页部分,包含轮播图,歌曲列表,搜索框按钮,点击搜索框按钮就会发生跳转,然后跳转到搜素界面

搜索界面:

这部分是搜索界面,在搜索框内输入想要搜索的歌曲或者歌手就会跳转到歌曲列表界面,然后在轮播图的下面展示出搜索的结果

歌曲播放界面:

点击歌曲列表后面的播放按钮就可以跳转到歌曲的播放界面并进行播放,歌曲播放界面有暂停,上一首,下一首,随机播放,单曲循环等功能

歌词滚动界面:

歌曲播放界面向左滑动便可以到达歌词部分,根据歌曲进度使对应的歌词部分显红

个人信息界面:

该部分是个人信息界面

三、部分代码实现

歌曲列表部分的:

  1. // index.js
  2. [ ] // 获取应用实例
  3. const app = getApp()
  4. Page({
  5. data: {
  6. // 轮播图数组
  7. 'swiperList':[{
  8. 'goods_id':'1',
  9. 'image_src':'/images/lunbo/lunbo1.jpg',
  10. 'open_type':'navigate'
  11. },
  12. {
  13. 'goods_id':'2',
  14. 'image_src':'/images/lunbo/lunbo2.jpg',
  15. 'open_type':'navigate'
  16. },
  17. {'goods_id':'3',
  18. 'image_src':'/images/lunbo/lunbo3.jpg',
  19. 'open_type':'navigate'
  20. }
  21. ] ,
  22. //歌曲数组
  23. songs:[],
  24. // 定义歌曲的数组
  25. },
  26. onLoad: function (options) {
  27. },
  28. onShow(){
  29. const app=getApp()
  30. let songs=app.globalData.data
  31. console.log(songs);
  32. this.setData({
  33. songs,
  34. })
  35. },
  36. // 点击事件函数
  37. gotoplay:function(e){
  38. var id = e.currentTarget.dataset.id;
  39. // 定义一个空数组
  40. var ids = [];
  41. // 遍历歌曲列表
  42. for(var i=0;i<this.data.songs.length;i++){
  43. ids.push(this.data.songs[i].id);
  44. }
  45. console.log("点击事件进入的方法");
  46. wx.navigateTo({
  47. url:'/pages/paly/play?mid='+ id + "&ids=" + ids,
  48. })
  49. }
  50. })

歌曲播放部分:

  1. // pages/paly/play.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. state:"play",
  8. id:"",
  9. ids:[],
  10. song:null,
  11. lyricArray:[],
  12. // 竖向滚动条初始值为0
  13. marginTop:0,
  14. currentIndex:0,
  15. // 播放模式
  16. mode:'loop',
  17. // 播放时间
  18. currentTime:"00:00",
  19. // 总时间
  20. timeLength:"03:30",
  21. max:0,
  22. move:0,
  23. likeState:"unlike"
  24. },
  25. /**
  26. * 生命周期函数--监听页面加载
  27. */
  28. // 控制歌曲的播放状态
  29. playOrPause:function(){
  30. var musicState=this.data.state;
  31. if(musicState=='play'){
  32. this.setData({
  33. state:'pause'
  34. })
  35. this.audioCtx.pause()
  36. }else{
  37. this.setData({
  38. state:'play'
  39. })
  40. this.audioCtx.play()
  41. }
  42. },
  43. // 上一首歌曲的函数
  44. prevSong:function(){
  45. var currentId = this.data.id;
  46. // 定义一个变量记录当前歌曲的下标
  47. var index = 0;
  48. // 根据id值找出当前歌曲的下标
  49. for(var i =0;i<this.data.ids.length;i++){
  50. // 判断一下当前歌曲是否一致
  51. if(currentId == this.data.ids[i]){
  52. index = i;
  53. break;
  54. }
  55. }
  56. var prevIndex =index ==0?this.data.ids.length-1 : index-1;
  57. var prevId = this.data.ids[prevIndex];
  58. // 修改当前歌曲的id
  59. this.setData({
  60. id:prevId
  61. })
  62. // 调用获取歌曲详情的函数
  63. this.getSongInfoById();
  64. // 播放新的歌曲
  65. this.audioCtx.play();
  66. },
  67. // 下一首歌曲的函数
  68. nextSong:function(){
  69. var currentId = this.data.id;
  70. // 定义一个变量记录当前歌曲的下标
  71. var index = 0;
  72. // 根据id值找出当前歌曲的下标
  73. for(var i =0;i<this.data.ids.length;i++){
  74. // 判断一下当前歌曲是否一致
  75. if(currentId == this.data.ids[i]){
  76. index = i;
  77. break;
  78. }
  79. }
  80. var nextIndex =index ==this.data.ids.length-1 ? 0: index+1;
  81. var nextId = this.data.ids[nextIndex];
  82. // 修改当前歌曲的id
  83. this.setData({
  84. id:nextId
  85. })
  86. // 调用获取歌曲详情的函数
  87. this.getSongInfoById();
  88. // 播放新的歌曲
  89. this.audioCtx.play();
  90. },
  91. // 切换播放模式的方法
  92. changeMode:function(params){
  93. var currentMode =this.data.mode;
  94. if(currentMode=='loop'){
  95. this.setData({
  96. mode:'single'
  97. })
  98. }else{
  99. this.setData({
  100. mode:'loop'
  101. })
  102. }
  103. },
  104. // 当歌曲播放完后的函数
  105. changeMusic:function () {
  106. // 判断当前的模式
  107. var mode = this.data.mode;
  108. var currentId = this.data.id;
  109. // 单曲循环
  110. if(mode == 'single'){
  111. // 单曲循环设置自己原本的id
  112. this.setData({
  113. id:currentId
  114. })
  115. // 刷新播放状态
  116. this.getSongInfoById();
  117. this.audioCtx.play();
  118. }else{
  119. this.nextSong();
  120. }
  121. },
  122. // 收藏歌曲的方法
  123. songLove:function(params){
  124. var currentState =this.data.likeState;
  125. if(currentState=='unlike'){
  126. this.setData({
  127. likeState:'like'
  128. })
  129. }else{
  130. this.setData({
  131. likeState:'unlike'
  132. })
  133. }
  134. },
  135. // 根据歌曲id来获取歌词的方法
  136. getLyricById:function(){
  137. var that = this;
  138. var currentId = this.data.id;
  139. wx.request({
  140. url: 'http://music.163.com/api/song/lyric?os=pc&id='+ currentId +'&lv=-1&kv=-1&tv=-1',
  141. success:function(result){
  142. // 解析歌词在字符串里
  143. var lyrics = result.data.lrc.lyric;
  144. // 调用解析歌词的方法
  145. var result = that.parseLyric(lyrics);
  146. // 调用去掉空歌词的方法
  147. var finalResult = that.sliceNull(result);
  148. that.setData({
  149. lyricArray:finalResult
  150. })
  151. }
  152. })
  153. },
  154. // 解析歌词的方法(正则表达式)
  155. parseLyric:function(lyrics){
  156. // 存储时间和歌词且一一对应
  157. var lyricResult =[];
  158. // 将歌词组成的字符串组成每句歌词组成的数组
  159. var lyricArray = lyrics.split("\n");
  160. // 判断最后一个元素是否为空。如果为空则删除
  161. if(lyricArray[lyricArray.length-1] == ""){
  162. lyricArray.pop();
  163. }
  164. var pattern = /\[\d{2}:\d{2}\.\d{2,3}\]/;
  165. // 遍历数组中的每一句歌词
  166. lyricArray.forEach(function(v,i,a){
  167. var real_lyric = v.replace(pattern,"");
  168. // 对每一句歌词处理,将时间单独提取出来
  169. var time = v.match(pattern);
  170. // 时间里的中括号不要
  171. // js中的最后一个元素的下标是长度-1或者-1
  172. if(time !=null){
  173. var timeResult = time[0].slice(1,-1);
  174. // 对结果进行一个切分
  175. var timeArray = timeResult.split(":");
  176. var finalTime = parseFloat(timeArray[0])*60 +parseFloat(timeArray[1]);
  177. lyricResult.push([finalTime,real_lyric]);
  178. }
  179. })
  180. // 返回歌词时间数组
  181. return lyricResult;
  182. },
  183. // 去掉空歌词,保留非空歌词的方法
  184. sliceNull:function(lyricArray){
  185. var result = [];
  186. for(var i=0;i<lyricArray.length;i++){
  187. if(lyricArray[i][1]!=""){
  188. result.push(lyricArray[i]);
  189. }
  190. }
  191. return result;
  192. },
  193. // 歌词与时间匹配的方法
  194. //播放进度触发
  195. changeTime:function(e){
  196. var currentTime = e.detail.currentTime;
  197. var lyricArray = this.data.lyricArray;
  198. if(this.data.currentIndex>=8){
  199. this.setData({
  200. marginTop:(this.data.currentIndex-8)*30
  201. })
  202. }
  203. if(this.data.currentIndex == lyricArray.length-2){
  204. if(currentTime>=lyricArray[lyricArray.length-1][0]){
  205. this.setData({
  206. currentIndex:lyricArray.length-1
  207. })
  208. }
  209. }else{
  210. for(var i=0;i<lyricArray.length-1;i++){
  211. if(currentTime>=lyricArray[i][0] && currentTime<lyricArray[i+1][0]){
  212. this.setData({
  213. currentIndex:i
  214. })
  215. }
  216. }
  217. }
  218. //进度条更新
  219. var timeLength = e.detail.duration;
  220. var sum_m = Math.floor(timeLength/60);
  221. var sum_s = Math.floor(timeLength%60);
  222. // 个位数补齐0
  223. if(sum_m<10){
  224. sum_m="0"+sum_m
  225. }
  226. if(sum_s<10){
  227. sum_s="0"+sum_s
  228. }
  229. // 定义播放时间
  230. var play_m = Math.floor(currentTime/60);
  231. var play_s = Math.floor(currentTime%60);
  232. // 个位数补齐0
  233. if(play_m<10){
  234. play_m="0"+play_m
  235. }
  236. if(play_s<10){
  237. play_s="0"+play_s
  238. }
  239. // 进度条更新
  240. this.setData({
  241. currentTime:play_m+":"+play_s,
  242. timeLength:sum_m+":"+sum_s,
  243. max:timeLength,
  244. move:currentTime
  245. })
  246. },
  247. // 进度条拖拽的方法
  248. sliderChange:function(e){
  249. var that = this;
  250. var currentValue = e.detail.value;
  251. this.setData({
  252. move:currentValue
  253. })
  254. // 跳转到指定播放的秒数位置
  255. that.audioCtx.seek(currentValue);
  256. // 修改当前播放时间
  257. // this.setData({
  258. // action:{
  259. // method:'setCurrentTime',
  260. // data:currentValue
  261. // }
  262. // })
  263. },
  264. // 根据歌曲的id找歌曲的详情
  265. getSongInfoById:function(){
  266. var currentId = this.data.id;
  267. var that = this;
  268. wx.request({
  269. url: 'https://music.163.com/api/song/detail/?id='+ currentId + '&ids=['+ currentId +']',
  270. success:function(result){
  271. var musicInfo = result.data.songs[0];
  272. console.log(musicInfo);
  273. that.setData({
  274. song:musicInfo
  275. })
  276. }
  277. })
  278. },
  279. onLoad:function (options) {
  280. var mid = options.mid;
  281. var idStr = options.ids;
  282. var ids = idStr.split(",");
  283. this.setData({
  284. id:mid,
  285. ids:ids
  286. })
  287. this.getSongInfoById();
  288. this.getLyricById();
  289. },
  290. /**
  291. * 生命周期函数--监听页面初次渲染完成
  292. */
  293. onReady:function() {
  294. this.audioCtx = wx.createAudioContext('myAudio');
  295. this.audioCtx.play();
  296. },
  297. /**
  298. * 生命周期函数--监听页面显示
  299. */
  300. onShow() {
  301. },
  302. /**
  303. * 生命周期函数--监听页面隐藏
  304. */
  305. onHide() {
  306. },
  307. /**
  308. * 生命周期函数--监听页面卸载
  309. */
  310. onUnload() {
  311. },
  312. /**
  313. * 页面相关事件处理函数--监听用户下拉动作
  314. */
  315. onPullDownRefresh() {
  316. },
  317. /**
  318. * 页面上拉触底事件的处理函数
  319. */
  320. onReachBottom() {
  321. },
  322. /**
  323. * 用户点击右上角分享
  324. */
  325. onShareAppMessage() {
  326. }
  327. })
  1. <!--pages/paly/play.wxml-->
  2. <view class="content">
  3. <image class="big_img"
  4. src="{{song.album.picUrl}}"></image>
  5. <view class="title">{{song.name}}</view>
  6. <!-- 中间封面和歌词 -->
  7. <view class="middle">
  8. <swiper class="middle-swiper">
  9. <!-- 封面区域 -->
  10. <swiper-item class="cd-wrapper">
  11. <view class="cd-image">
  12. <image style="animation-play-state:{{state == 'play'? 'running': 'paused'}}" src="{{song.album.picUrl}}"></image>
  13. </view>
  14. </swiper-item>
  15. <!-- 歌词区域 -->
  16. <swiper-item>
  17. <!-- scroll-view可以滚动 -->
  18. <scroll-view class="lyric-wrapper" scroll-y="true" scroll-top="{{marginTop}}">
  19. <!-- 存放所有歌词 -->
  20. <view class="contentArray">
  21. <block wx:for="{{lyricArray}}" wx:for-index="index" wx:for-item="lyric">
  22. <text class="{{currentIndex == index?'currentLyric':''}}">{{lyric[1]}}</text>
  23. </block>
  24. </view>
  25. </scroll-view>
  26. </swiper-item>
  27. </swiper>
  28. </view>
  29. <!-- 播放控制按钮 -->
  30. <!-- 进度条 -->
  31. <view class="timeBox">
  32. <view class="play_time">{{currentTime}}</view>
  33. <!-- max代表总的长度,value是当前进度 -->
  34. <slider bindchange="sliderChange" activeColor="red" block-size="14" max="{{max}}" value="{{move}}"></slider>
  35. <view class="end_time">{{timeLength}}</view>
  36. </view>
  37. <!-- 播放相关的按钮 -->
  38. <view class="controls">
  39. <!-- 切换上一首歌曲 -->
  40. <image bindtap="changeMode" src="/images/tabar/{{mode =='loop'? 'loop' : 'single'}}.png"></image>
  41. <image bindtap="prevSong" src="/images/tabar/prev.png"></image>
  42. <image bindtap="playOrPause" src="/images/tabar/{{state =='play'? 'pause' : 'play'}}.png"></image>
  43. <image bindtap="nextSong" src="/images/tabar/next.png"></image>
  44. <image bindtap="songLove" src="/images/tabar/{{likeState =='unlike'? 'unlike1':'like'}}.png"></image>
  45. </view>
  46. </view>
  47. <!-- 当播放进度改变时触发changtime函数 -->
  48. <audio bindended="changeMusic" bindtimeupdate="changeTime" src="http://music.163.com/song/media/outer/url?id={{id}}.mp3" id="myAudio">
  49. </audio>

最后,说一下本人的学习心得,前端相关学习视频推荐,b站黑马程序员pink老师系列,本人认为作为前端的初学者来说,pink老师的课风趣幽默,技术知识点讲的非常细致,其他的同学们可以去参考看看。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/969131
推荐阅读
相关标签
  

闽ICP备14008679号