微信小程序背景音乐开发详解
(编辑:jimmy 日期: 2024/11/8 浏览:3 次 )
wx.getBackgroundAudioManager()
推荐大家使用背景音乐不在使用audio
audio播放音频加载时间长 体验需求达不到
相关文档
https://developers.weixin.qq.com/miniprogram/dev/api/media/background-audio/BackgroundAudioManager.html
相关代码
const bgMusic = wx.getBackgroundAudioManager() //创建背景音乐 Page({ data: { id: '',//请求数据参数id musicMsg: {},//接收数据对象 }, onLoad: function (options) { var that = this that.setData({ id: options.id, }) that.getPicInfo() //请求服务器 }, // 开始播放 listenerButtonPlay: function (src) { var that = this console.log(src) bgMusic.src = src; bgMusic.onTimeUpdate(() => { //监听音频播放进度 console.log(bgMusic.currentTime) }) bgMusic.onEnded(() => { //监听音乐自然播放结束 console.log("音乐播放结束"); that.listenerButtonPlay(that.data.musicMsg.mp3) }) bgMusic.play(); //播放音乐 }, getPicInfo() { var that = this wx.request({ url: 'https://xxxxx.xxxxx.com/1.json"离开") }, //暂停 audioPause: function () { var that = this bgMusic.pause(); //暂停播放音乐 console.log('暂停') }, audioPlay: function () { var that = this bgMusic.play(); //停止播放 console.log('继续播放') }, //停止播放 listenerButtonStop: function () { bgMusic.stop() }, })
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇:vue实现商城秒杀倒计时功能