HTML视频自动播放不起作用

时间:2018-04-29 08:57:49

标签: html css

这是我的代码,但视频没有连续循环播放。

<iframe src="files/media/video/moped.webm?&amp;autoplay=1&amp;loop=1&amp;title=0&amp;byline=0&amp;portrait=0" width="400" height="height: 722.375px;" frameborder="0" ></iframe>

我尝试将autoplay设置为01,但这并未改变任何内容。

2 个答案:

答案 0 :(得分:1)

您可以改为使用<video>元素:

<video width="100%" height="100%" autoplay loop>
    <source src="files/media/video/moped.webm" type="video/webm" />
    Your browser does not support the video tag.
</video>

答案 1 :(得分:0)

尝试使用

  ?rel=0;&autoplay=1  

并注意适当的高度值

<iframe src="files/media/video/moped.webm??rel=0;&amp;autoplay=1&amp;loop=1&amp;
          title=0&amp;byline=0&amp;portrait=0" 
                width="400" height="722" frameborder="0" ></iframe>