wux-weapp
Version:
一套组件化、可复用、易扩展的微信小程序 UI 组件库
29 lines (28 loc) • 1.05 kB
JavaScript
App({
onLaunch() {
// this.checkAudio()
},
checkAudio() {
wx.getSystemInfo({
success: (res) => {
if (res.platform !== 'devtools') {
wx.getNetworkType({
success: (res) => {
if (res.networkType === 'wifi') {
this.autoPlay()
}
},
})
}
},
})
},
autoPlay() {
const backgroundAudioManager = wx.getBackgroundAudioManager()
backgroundAudioManager.title = '小鸡哔哔'
backgroundAudioManager.epname = '洛天依小鸡哔哔'
backgroundAudioManager.singer = '洛天依'
backgroundAudioManager.coverImgUrl = 'http://y.gtimg.cn/music/photo_new/T002R300x300M000000PKgrQ10ZW56.jpg?max_age=2592000'
backgroundAudioManager.src = 'http://cdn.skyvow.cn/%E6%B4%9B%E5%A4%A9%E4%BE%9D%20-%20%E5%B0%8F%E9%B8%A1%E5%93%94%E5%93%94.mp3'
},
})