所以我使用以下代码将视频嵌入我的WordPress网站
<div class="videoWrapper"><iframe src="http://www.genericwebsitename.co.uk/wp-content/uploads/2015/11/generic-website-name-goes-in-here...mp4" width="300" height="300"></iframe></div>
我试图添加autoplay = 0,autoplay = false但似乎没有任何效果。它总是自动播放。
正如您所看到的,这不是YouTube链接,视频文件已上传到WordPress网站本身并通过iFrame标记进行链接。
通过论坛,我似乎无法找到有效的答案。
答案 0 :(得分:1)
而不是iframe使用贝尔风格式
您可以使用视频标记来源,例如:
<video width="640" height="480" controls="controls" type="video/mp4" preload="none">
<source src="http://example.com/mytestfile.mp4" autostart="false">
Your browser does not support the video tag.
</video>