Video startDate属性用于返回一个Date对象,该对象表示视频的当前时间轴偏移量。 Video startDate属性的应用程序用于使Internet上实时流视频的准确同步。
用法:
videoObject.startDate
以下示例程序旨在说明Video startDate()属性:
例:获取视频的当前时间轴偏移量。
<!DOCTYPE html>
<html>
<head>
<title>
Video startDate() Property
</title>
</head>
<body style="text-align:center">
<h1 style="color:green">
GeeksforGeeks
</h1>
<h2 style="font-family:Impact">
Video startDate() Property
</h2>
<br>
<video id="Test_Video"
width="360"
height="240"
controls>
<source id="mp4_source"
src="sample2.mp4"
type="video/mp4">
<source id="ogg_source"
src="sample2.ogg"
type="video/ogg">
</video>
<p>To get the current timeline offset of
the video, double click the "Return
Timeline Offset" button.</p>
<br>
<button ondblclick="My_Video()">
Return Timeline Offset
</button>
<p id="test"></p>
<script>
function My_Video() {
var v =
document.getElementById(
"Test_Video").startDate;
document.getElementById(
"test").innerHTML = v;
}
</script>
</body>
</html>
输出:
- 在单击按钮之前:
- 单击按钮后:
支持的浏览器:HTML |不支持主要浏览器。 DOM Video startDate属性。
相关用法
- HTML Audio startDate用法及代码示例
- HTML Video src用法及代码示例
- HTML Video ended用法及代码示例
- HTML Video duration用法及代码示例
- HTML Video height用法及代码示例
- HTML Video defaultMuted用法及代码示例
- HTML Video width用法及代码示例
- HTML Video loop用法及代码示例
- HTML Video readyState用法及代码示例
- HTML Video controller用法及代码示例
- HTML Video mediaGroup用法及代码示例
- HTML Video Seeking用法及代码示例
- HTML Video seekable用法及代码示例
- HTML Video poster用法及代码示例
- HTML Video videoTracks用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM Video startDate Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。