P粉3691966032023-08-24 15:21:28
要在 chrome 66 更新後讓 html 5 元素自動播放,您只需將 muted
屬性新增至 video 元素即可。
所以你目前的影片 HTML
<video title="Advertisement" webkit-playsinline="true" playsinline="true" style="background-color: rgb(0, 0, 0); position: absolute; width: 640px; height: 360px;" src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" autoplay=""></video>
只需要muted="muted"
<video title="Advertisement" style="background-color: rgb(0, 0, 0); position: absolute; width: 640px; height: 360px;" src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" autoplay="true" muted="muted"></video>
我相信 chrome 66 更新正在嘗試阻止選項卡在用戶選項卡上產生隨機噪音。這就是為什麼靜音屬性使自動播放再次起作用的原因。