Youtube 内嵌视频自动播放

Gal*_*lex 0 youtube iframe autoplay

...不工作。任何想法为什么?

<iframe width="560" height="315" src="https://www.youtube.com/embed/nwe76N7J0EI?rel=0&amp;controls=0&amp;showinfo=0&amp;start=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
Run Code Online (Sandbox Code Playgroud)

这是 youtube 提供的最新代码

小智 5

默认情况下,它是浏览器阻止自动播放(带声音)。

https://developers.google.com/web/updates/2017/09/autoplay-policy-changes

它终于在几个月前实施了。您仍然可以使用自动播放,但需要将视频静音。

请注意下面嵌入中添加的 mute=1。它会自动播放,但如果您将其删除,则会中断。

<iframe width="560" height="315" src="https://www.youtube.com/embed/nwe76N7J0EI?rel=0&autoplay=1&mute=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
Run Code Online (Sandbox Code Playgroud)