aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/timeranges/start
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/timeranges/start
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/timeranges/start')
-rw-r--r--files/ja/web/api/timeranges/start/index.html79
1 files changed, 79 insertions, 0 deletions
diff --git a/files/ja/web/api/timeranges/start/index.html b/files/ja/web/api/timeranges/start/index.html
new file mode 100644
index 0000000000..98d14fd760
--- /dev/null
+++ b/files/ja/web/api/timeranges/start/index.html
@@ -0,0 +1,79 @@
+---
+title: TimeRanges.start()
+slug: Web/API/TimeRanges/start
+tags:
+ - API
+ - HTML DOM
+ - Media
+ - Method
+ - Reference
+ - TimeRanges
+translation_of: Web/API/TimeRanges/start
+---
+<p>{{APIRef("DOM")}}</p>
+
+<p>{{gecko_minversion_header("2.0")}}</p>
+
+<p><span class="seoSummary">指定された時間範囲が始まる時間オフセットを返します。</span></p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox"><em>startTime</em> = TimeRanges.start(index)
+</pre>
+
+<h3 id="Parameters" name="Parameters">パラメーター</h3>
+
+<ul>
+ <li><code>index</code> は、開始時間を返す範囲の番号です。</li>
+</ul>
+
+<h3 id="Exceptions" name="Exceptions">例外</h3>
+
+<dl>
+ <dt>INDEX_SIZE_ERR</dt>
+ <dd>指定されたインデックスが既存の範囲に対応しない場合にスローされる <code>DOMException</code>。</dd>
+</dl>
+
+<h2 id="Example" name="Example">例</h2>
+
+<p>ID が "myVideo" の動画要素がある場合、</p>
+
+<pre class="brush: js">var v = document.getElementById("myVideo");
+
+var buf = v.buffered;
+
+var numRanges = buf.length;
+
+if (buf.length == 1) {
+ // 1つの範囲のみ
+ if (buf.start(0) == 0 &amp;&amp; buf.end(0) == v.duration) {
+ // 1つの範囲が動画の最初から始まり、
+ // 動画の最後で終わるため、すべてが読み込まれています
+ }
+}
+</pre>
+
+<p>この例では、時間範囲を見て、動画全体が読み込まれたかどうかを確認します。</p>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ <tr>
+ <td>{{SpecName("HTML WHATWG", "#dom-timeranges-start", "TimeRanges.start()")}}</td>
+ <td>{{Spec2("HTML WHATWG")}}</td>
+ <td>初期定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+
+
+<p>{{Compat("api.TimeRanges.start")}}</p>