aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/vttregion
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/vttregion
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/vttregion')
-rw-r--r--files/ja/web/api/vttregion/index.html72
1 files changed, 72 insertions, 0 deletions
diff --git a/files/ja/web/api/vttregion/index.html b/files/ja/web/api/vttregion/index.html
new file mode 100644
index 0000000000..5377a7a228
--- /dev/null
+++ b/files/ja/web/api/vttregion/index.html
@@ -0,0 +1,72 @@
+---
+title: VTTRegion
+slug: Web/API/VTTRegion
+tags:
+ - API
+ - VTTRegion
+ - WebVTT
+translation_of: Web/API/VTTRegion
+---
+<p>{{APIRef("WebVTT")}}</p>
+
+<p><span class="seoSummary">WebVTT(メディアプレゼンテーションに関するテキストトラック)を処理するための API の一部である <code>VTTRegion</code> インターフェイスは、{{domxref("VTTCue")}} をレンダリングするための動画の一部を記述します。</span></p>
+
+<h2 id="Constructor" name="Constructor">コンストラクタ</h2>
+
+<dl>
+ <dt>{{domxref("VTTRegion.VTTRegion", "VTTRegion()")}}</dt>
+ <dd>新しく作成された <code>VTTRegion</code> オブジェクトを返します。</dd>
+</dl>
+
+<h2 id="Properties" name="Properties">プロパティ</h2>
+
+<dl id="property_definitions">
+ <dt>{{domxref("VTTRegion.id")}}</dt>
+ <dd>領域を識別する {{domxref("DOMString")}}。</dd>
+ <dt>{{domxref("VTTRegion.width")}}</dt>
+ <dd>領域の幅を動画のパーセントとして表す <code>double</code> 型。</dd>
+ <dt>{{domxref("VTTRegion.lines")}}</dt>
+ <dd>領域の高さを行数で表す <code>double</code> 型。</dd>
+ <dt>{{domxref("VTTRegion.regionAnchorX")}}</dt>
+ <dd>領域アンカーの X オフセットを領域のパーセントとして表す <code>double</code> 型。</dd>
+ <dt>{{domxref("VTTRegion.regionAnchorY")}}</dt>
+ <dd>領域アンカーの Y オフセットを領域のパーセントとして表す <code>double</code> 型。</dd>
+ <dt>{{domxref("VTTRegion.viewportAnchorX")}}</dt>
+ <dd>ビューポートアンカーの X オフセットを動画のパーセントとして表す <code>double</code> 型。</dd>
+ <dt>{{domxref("VTTRegion.viewportAnchorY")}}</dt>
+ <dd>ビューポートアンカーの Y オフセットを動画のパーセントとして表す <code>double</code> 型。</dd>
+ <dt>{{domxref("VTTRegion.scroll")}}</dt>
+ <dd>新しいキューを追加すると既存のキューがどのように移動するかを表す列挙型。</dd>
+</dl>
+
+<h2 id="Examples" name="Examples">例</h2>
+
+<pre class="brush: js">var region = new VTTRegion();
+region.width = 50; // 動画幅の50%を使用し、
+region.lines = 4; // 高さは4行を使用します。
+region.viewportAnchorX = 25; // 領域が左から25%で始まるようにします。
+var cue = new VTTCue(2, 3, 'かっこいい文章を表示する');
+cue.region = region; // このキューはこの領域内にのみ描かれます。</pre>
+
+<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("WebVTT")}}</td>
+ <td>{{Spec2("WebVTT")}}</td>
+ <td> </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+
+
+<p>{{Compat("api.VTTRegion")}}</p>