美文网首页
微信小程序静音下播放音频

微信小程序静音下播放音频

作者: hsqin | 来源:发表于2018-07-04 16:07 被阅读39次

方案:

使用 wx.createInnerAudioContext()

配置 obeyMuteSwitch=true即可

eg:
`

    var audioInnerCtxWord = null  //播发器
    if (wx.createInnerAudioContext) {
        audioInnerCtxWord = wx.createInnerAudioContext()  //微信内部的audio
        audioInnerCtxWord.obeyMuteSwitch = false //不遵循静音开关,即静音下也能播放
    } else {
        that.audioCtxWord = wx.createAudioContext('playerWord') //页面中的audio组件
       
    }

`

参考: 微信小程序API

相关文章

网友评论

      本文标题:微信小程序静音下播放音频

      本文链接:https://www.haomeiwen.com/subject/cfeksftx.html