iOS系统的内置浏览器Safari禁止视频和音频的自动播放。
参考:
1 | In Safari on iOS (for all devices, including iPad), where the user may be on a cellular network and be charged per data unit, preload and autoplay are disabled. No data is loaded until the user initiates it. |
所以,需要在页面加载的时候,模拟一个用户触碰的响应动作,来播放音乐,并在音乐开始播放后,移除该响应动作。
1 | <audio id = "audio" autoplay loop> |