H5设置或返回音频视频播放的当前位置(以秒计)的属性currentTime

H5设置或返回音频视频播放的当前位置(以秒计)的属性currentTime,第1张

H5设置或返回音频/视频播放的当前位置(以秒计)的属性currentTime

实例

将时间位置设置为 5 秒:

myVid=document.getElementById("video1");
myVid.currentTime=5;

定义和用法

currentTime 属性设置或返回音频/视频播放的当前位置(以秒计)。

当设置该属性时,播放会跳跃到指定的位置。

浏览器支持

所有主流浏览器都支持 currentTime 属性。

注释:Internet Explorer 8 或更早的浏览器不支持该属性。

语法

设置 currentTime 属性:

audio|video.currentTime="seconds"

返回 currentTime 属性:

audio|video.currentTime

属性值

值描述seconds指示音频/视频播放的当前位置(以秒计)。

技术细节

返回值数字值,表示秒

实例

将时间位置设置为 5 秒:

<!DOCTYPE html> 
<html> 
<body> 

<p>
	<button onclick="getCurTime()" type="button">获得当前时间的位置</button>
	<button onclick="setCurTime()" type="button">把时间位置设置为 5 秒</button>
</p>

<video id="video1" controls="controls">
	<source src="/kf51/demo/mov_bbb.mp4" type="video/mp4">
	<source src="/kf51/demo/mov_bbb.ogg" type="video/ogg">
	您的浏览器不支持 video 标签。
</video>

<script>
var myVid = document.getElementById("video1");
function getCurTime() { 
	alert(myVid.currentTime);
} 
function setCurTime() { 
	myVid.currentTime = 5;
} 
</script> 

</body> 
</html>

以上就是H5设置或返回音频/视频播放的当前位置(以秒计)的属性currentTime的详细内容,

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/695535.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-22
下一篇 2022-04-22

发表评论

登录后才能评论

评论列表(0条)

保存