0

当它显示带有 HTML5 的 video 标签的视频时,它可以获得经过的时间。
为此,我就像这样编码。

<video id="video" controls="controls" autoplay="autoplay" name="media">
    <source src="test_video.mp4" type="video/mp4">
</video>

<button name="test" onclick="alert(Math.floor(document.getElementById('video').currentTime) + ' secs elapsed!');">
    How many seconds elapsed?
</button>

<button name="test" onclick="document.getElementById('video').currentTime = 120;">
    Start playing at 120 secs
</button>

如果使用 iframe 从其他网站调用视频时我正在做同样的事情怎么办?
我该如何编码?

<iframe src="http://flashservice.xvideos.com/embedframe/3109336" frameborder=0 width=510 height=400 scrolling=no></iframe>
4

0 回答 0