这是我的代码,但视频没有连续循环播放。
<iframe src="files/media/video/moped.webm?&autoplay=1&loop=1&title=0&byline=0&portrait=0" width="400" height="height: 722.375px;" frameborder="0" ></iframe>
我尝试将autoplay
设置为0
和1
,但这并未改变任何内容。
答案 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;&autoplay=1&loop=1&
title=0&byline=0&portrait=0"
width="400" height="722" frameborder="0" ></iframe>