当前位置: 首页 > Web前端 > vue.js

vue音频浏览器音乐无法自动播放

时间:2023-03-31 15:41:13 vue.js

安卓手机浏览器无法自动播放背景音乐,需要在mounted中强制播放auido.play()。如果是在微信环境下,需要额外处理。=!!userAgent.match(/\(i[^;]+;(U;)?CPU.+MacOSX/);constIS_IN_WX=/MicroMessenger/i.test(userAgent);if(ENV.IS_IN_WX){//是否微信环境if(ENV.IS_IN_IOS){changeAudioPlayStatus(true);changeAudioPlayStatus(false);}}else{changeAudioPlayStatus(true);}document.addEventListener('WeixinJSBridgeReady',()=>{//微信H5环境,监听WeixinJSBridgeReady事件,再次播放changeAudioPlayStatus(true);},false);