wx.getBackgroundAudioManager()
專注于為中小企業(yè)提供網(wǎng)站建設(shè)、成都網(wǎng)站制作服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)常州免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了上千多家企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
推薦大家使用背景音樂(lè)不在使用audio
audio播放音頻加載時(shí)間長(zhǎng) 體驗(yàn)需求達(dá)不到
相關(guān)文檔
https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.html
相關(guān)代碼
const bgMusic = wx.getBackgroundAudioManager() //創(chuàng)建背景音樂(lè) Page({ data: { id: '',//請(qǐng)求數(shù)據(jù)參數(shù)id musicMsg: {},//接收數(shù)據(jù)對(duì)象 }, onLoad: function (options) { var that = this that.setData({ id: options.id, }) that.getPicInfo() //請(qǐng)求服務(wù)器 }, // 開(kāi)始播放 listenerButtonPlay: function (src) { var that = this console.log(src) bgMusic.src = src; bgMusic.onTimeUpdate(() => { //監(jiān)聽(tīng)音頻播放進(jìn)度 console.log(bgMusic.currentTime) }) bgMusic.onEnded(() => { //監(jiān)聽(tīng)音樂(lè)自然播放結(jié)束 console.log("音樂(lè)播放結(jié)束"); that.listenerButtonPlay(that.data.musicMsg.mp3) }) bgMusic.play(); //播放音樂(lè) }, getPicInfo() { var that = this wx.request({ url: 'https://xxxxx.xxxxx.com/1.json?id=' + that.data.id, header: { 'content-type': 'application/json' }, method: 'GET', success: function (res) { that.listenerButtonPlay(res.data.data.mp3) //成功回調(diào)執(zhí)行播放音樂(lè) that.setData({ musicMsg: res.data.data, //賦值對(duì)象 }) } }) }, onUnload() { var that = this that.listenerButtonStop()//頁(yè)面卸載時(shí)停止播放 console.log("離開(kāi)") }, //暫停 audioPause: function () { var that = this bgMusic.pause(); //暫停播放音樂(lè) console.log('暫停') }, audioPlay: function () { var that = this bgMusic.play(); //停止播放 console.log('繼續(xù)播放') }, //停止播放 listenerButtonStop: function () { bgMusic.stop() }, })
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
網(wǎng)頁(yè)題目:微信小程序背景音樂(lè)開(kāi)發(fā)詳解
網(wǎng)站URL:http://www.rwnh.cn/article42/ipcjhc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供小程序開(kāi)發(fā)、建站公司、搜索引擎優(yōu)化、自適應(yīng)網(wǎng)站、品牌網(wǎng)站建設(shè)、商城網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)