You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
2.8 KiB
118 lines
2.8 KiB
// pages/index/index.js
|
|
Page({
|
|
data: {
|
|
item: 0,
|
|
tab: 0,
|
|
playlist: [{
|
|
id: 1,
|
|
title: '钢琴演奏曲',
|
|
singer: '肖邦',
|
|
src: 'http://localhost:3000/1.mp3',
|
|
coverImgUrl: '/image/cover.jpg'
|
|
}, {
|
|
id: 2,
|
|
title: '奏鸣曲',
|
|
singer: '莫扎特',
|
|
src: 'http://localhost:3000/2.mp3',
|
|
coverImgUrl: '/image/cover.jpg'
|
|
}, {
|
|
id: 3,
|
|
title: '欢乐颂',
|
|
singer: '贝多芬',
|
|
src: 'http://localhost:3000/1.mp3',
|
|
coverImgUrl: '/image/cover.jpg'
|
|
}, {
|
|
id: 4,
|
|
title: '爱之梦',
|
|
singer: '李斯特',
|
|
src: 'http://localhost:3000/1.mp3',
|
|
coverImgUrl: '/image/cover.jpg'
|
|
}],
|
|
state: 'paused',
|
|
playIndex: 0,
|
|
play: {
|
|
currentTime: '00:00',
|
|
duration: '00:00',
|
|
percent: 0,
|
|
title: '',
|
|
singer: '',
|
|
coverImgUrl: '/image/cover.jpg'
|
|
},
|
|
},
|
|
changeItem(e) {
|
|
this.setData({
|
|
item: e.target.dataset.item
|
|
})
|
|
},
|
|
changeTab(e) {
|
|
this.setData({
|
|
tab: e.detail.current
|
|
})
|
|
},
|
|
audioCtx: null,
|
|
onReady() {
|
|
this.audioCtx = wx.createInnerAudioContext()
|
|
var that = this
|
|
this.audioCtx.onError(function () {
|
|
console.log('播放失败' + that.audioCtx.src)
|
|
})
|
|
this.audioCtx.onEnded(function () {
|
|
that.next()
|
|
})
|
|
this.audioCtx.onPlay(function () {})
|
|
this.audioCtx.onTimeUpdate(function () {
|
|
that.setData({
|
|
'play.duration': fromatTime(that.audioCtx.duration),
|
|
'play.currentTime': fromatTime(that.audioCtx.currentTime),
|
|
'play.percent': that.audioCtx.currentTime / that.audioCtx.duration * 100
|
|
})
|
|
})
|
|
this.setMusic(0)
|
|
|
|
function fromatTime(time) {
|
|
var minute = Math.floor(time / 60) % 60;
|
|
var second = Math.floor(time) % 60;
|
|
return (minute < 10 ? '0' + minute : minute) + ':' + (second < 10 ? '0' + second : second)
|
|
}
|
|
},
|
|
setMusic(index) {
|
|
var music = this.data.playlist[index]
|
|
this.audioCtx.src = music.src
|
|
this.setData({
|
|
playIndex: index,
|
|
'play.title': music.title,
|
|
'play.singer': music.singer,
|
|
'play.coverImgUrl': music.coverImgUrl,
|
|
'play.currentTime': '00:00',
|
|
'play.duration': '00:00',
|
|
'play.percent': 0
|
|
})
|
|
},
|
|
play() {
|
|
this.audioCtx.play()
|
|
this.setData({
|
|
state: 'running'
|
|
})
|
|
},
|
|
pause() {
|
|
this.audioCtx.pause()
|
|
this.setData({
|
|
state: 'paused'
|
|
})
|
|
},
|
|
next() {
|
|
var index = this.data.playIndex >= this.data.playlist.length - 1 ? 0 : this.data.playIndex + 1
|
|
this.setMusic(index)
|
|
if (this.data.state === 'running') {
|
|
this.play()
|
|
}
|
|
},
|
|
sliderChange(e) {
|
|
var second = e.detail.value * this.audioCtx.duration / 100
|
|
this.audioCtx.seek(second)
|
|
},
|
|
change(e) {
|
|
this.setMusic(e.currentTarget.dataset.index)
|
|
this.play()
|
|
}
|
|
}) |