很多教程都让我们使用这样的写法:
<embed src="music.mp3" autostart="true" loop="true" hidden="true"></embed>
但实际上,这样会被浏览器拦截的,因为浏览器禁止这样的自动播放,哪怕对页面交互了也不行。
所以我们只能通过CSS将embed
元素的宽高调为0,来替代hidden="true"
。
<embed src="music.mp3" autostart="true" loop="true"></embed>
embed {
width: 0;
height: 0;
}
虽仍不能直接播放,但至少对页面交互后就能正常播放了。