如何在Chrome中使用视频自动播放iframe

时间:2018-07-12 07:27:14

标签: google-chrome video iframe

我用谷歌搜索了答案,但没有找到任何答案。如何在Chrome中自动播放视频。这是我尝试过的:

<iframe allow="fullscreen; autoplay" allowfullscreen="true" src="https://example.com"></iframe>

4 个答案:

答案 0 :(得分:0)

我在互联网上找到了答案,但在stackoverflow中找不到了,所以我将其留在这里,以便有人可以找到它:

        <iframe allow="autoplay *; fullscreen *" allowfullscreen="true" 
          src="https://example.com">
        </iframe>

答案 1 :(得分:0)

关于这方面的信息很少。经过大量搜索,我发现它可以正常工作。

  

要修改代码以包含自动播放功能,只需将其插入   在字母数字代码之后:

?rel=0;&autoplay=1

示例:

<iframe width="560" height="315" 
    src="https://www.youtube.com/embed/iG9CE55wbtY?rel=0;&autoplay=1" frameborder="0" 
    allowfullscreen>
</iframe>

参考:https://support.gospacecraft.com/hc/en-us/articles/202694610-Set-Video-to-Autoplay

答案 2 :(得分:0)

只需将自动播放功能添加到您的代码中:链接后(在双引号内)“?autoplay = 1”。

<iframe src="https://example.com?autoplay=1"></iframe>

推荐this will explain you better.

答案 3 :(得分:0)

为了自动播放视频,iframe 需要在 src 属性中包含 autoplay=1 和 allow=autoplay 属性。

<iframe src="https://example.com?autoplay=1" allow="autoplay"></iframe>