我的标题中有一个视频,但是,仅当您单击菜单中的home链接转到/index.html时,该视频才会播放。页面首次加载时将不会播放。我还进行了测试,以查看在网址末尾手动输入/index.html是否有效,但无效。我用来播放视频的代码是:
<video autoplay loop>
<source type="video/mp4" src="images/untitled.mp4" />
<source type="video/webm" src="images/untitled.webm" />
</video>
我的网站是http://richardgao.5gbfree.com(可以检查源代码)
首次加载页面时,如何使视频自动播放?
谢谢
答案 0 :(得分:1)
您是否在chrome中对其进行了测试?对于Chrome,您需要关闭声音:
function update(renderer, scene, camera) {
renderer.render(
scene,
camera
);
}
,至少在某些版本的safari自动播放中根本不起作用。您可以使用jquery启动vid,例如:
<video autoplay muted loop> ... </video>