blob: ec667078a98942eb8ba0d4e379c920878f6088ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
---
title: HTMLMediaElement.duration
slug: Web/API/HTMLMediaElement/duration
translation_of: Web/API/HTMLMediaElement/duration
---
<div>{{APIRef("HTML DOM")}}</div>
<p><strong><code>HTMLMediaElement.duration</code></strong> свойство возвращает длину медиа в секундах или ноль, если данные по медиа недоступны.</p>
<h2 id="Syntax" name="Syntax">Синтаксис</h2>
<pre class="brush: js">var <em>myDuration</em> = <em>audioOrVideo</em>.duration</pre>
<h3 id="Значения">Значения</h3>
<p><code>Double</code>. Если медиа данные доступны, но длина неизвестна, то duration будет <code>NaN</code>. Если медиа загружается в фоновом режиме и не имеет заранее определенной длины, значение равно <code>Inf</code>.</p>
<h2 id="Пример">Пример</h2>
<pre class="brush: js">var obj = document.createElement('video');
console.log(obj.duration); // NaN
</pre>
<h2 id="Specifications">Specifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', "#dom-media-duration", "HTMLMediaElement.duration")}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', "embedded-content-0.html#htmlmediaelement", "HTMLMediaElement.duration")}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<p>{{Compat("api.HTMLMediaElement.duration")}}</p>
<h2 id="See_Also" name="See_Also">Смотрите также</h2>
<ul>
<li>The interface defining it, {{domxref("HTMLMediaElement")}}.</li>
</ul>
|