TimeRanges.end() - Web APIs 编辑
Returns the time offset at which a specified time range ends.
Syntax
endTime = TimeRanges.end(index)
Parameters
index
is the range number to return the ending time for.
Exceptions
- INDEX_SIZE_ERR
- A
DOMException
thrown if the specified index doesn't correspond to an existing range.
Example
Given a video element with the ID "myVideo":
var v = document.getElementById("myVideo");
var buf = v.buffered;
var numRanges = buf.length;
if (buf.length == 1) {
// only one range
if (buf.start(0) == 0 && buf.end(0) == v.duration) {
// The one range starts at the beginning and ends at
// the end of the video, so the whole thing is loaded
}
}
This example looks at the time ranges and looks to see if the entire video has been loaded.
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'TimeRanges.end()' in that specification. | Living Standard | Initial definition |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论