加载时在特定位置启动HTML5视频?
2022-08-30 05:19:24
我需要HTML5视频才能在某个时候开始。假设在时间 50 秒以后。
我试过了,但它没有按预期工作。我做错了什么吗?
代码如下:
<video id="vid1" width="640" height="360">
<source src="file.webm" type="video/webm" />
Your browser does not support the video tag.
</video>
<script>
document.getElementById('vid1').currentTime = 50;
</script>
当页面加载时,它只是从头开始播放。但是,如果我在播放期间调用它,就像一段时间后一样,它可以正常工作。我错过了什么吗?