因此,我使用以下代码将视频嵌入到我的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标记链接。
通过论坛,我似乎找不到一个有效的答案。
发布于 2015-12-07 20:10:34
代替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>https://stackoverflow.com/questions/34142185
复制相似问题