微信小程序添加音效createInnerAudioContext

可以查看微信小程序api文档中

     //添加音效
          const innerAudioContext = wx.createInnerAudioContext()
          innerAudioContext.autoplay = true  // 是否自动开始播放,默认为 false
          innerAudioContext.loop =false  // 是否循环播放,默认为 false
          wx.setInnerAudioOption({ // ios在静音状态下能够正常播放音效
            obeyMuteSwitch: false,   // 是否遵循系统静音开关,默认为 true。当此参数为 false 时,即使用户打开了静音开关,也能继续发出声音。
            success: function(e) {
              console.log(e)
              console.log('play success')
            },
            fail: function(e) {
              console.log(e)
              console.log('play fail')
            }
          })
          innerAudioContext.src = '/utils/gold.mp3';  // 音频资源的地址
          innerAudioContext.onPlay(() => {  // 监听音频播放事件
            console.log('开始播放')
          })
          innerAudioContext.onError((res) => { // 监听音频播放错误事件
            console.log(res.errMsg)
            console.log(res.errCode)
          })

你可能感兴趣的:(微信小程序)