aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/videotrack/selected
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/videotrack/selected')
-rw-r--r--files/ja/web/api/videotrack/selected/index.html54
1 files changed, 54 insertions, 0 deletions
diff --git a/files/ja/web/api/videotrack/selected/index.html b/files/ja/web/api/videotrack/selected/index.html
new file mode 100644
index 0000000000..902969fe0f
--- /dev/null
+++ b/files/ja/web/api/videotrack/selected/index.html
@@ -0,0 +1,54 @@
+---
+title: VideoTrack.selected
+slug: Web/API/VideoTrack/selected
+tags:
+ - HTML DOM
+ - Media
+ - Media Controls
+ - Media Track
+ - Property
+ - Reference
+ - Video
+ - VideoTrack
+ - selected
+ - track
+translation_of: Web/API/VideoTrack/selected
+---
+<div>{{APIRef("HTML DOM")}}</div>
+
+<p><span class="seoSummary"><strong>{{domxref("VideoTrack")}}</strong> の <strong><code>selected</code></strong> プロパティは、特定の動画トラックがアクティブかどうかを制御します。</span></p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox"><em>isVideoSelected</em> = <em>VideoTrack</em>.selected;
+
+<em>VideoTrack</em>.selected = <em>true</em> | <em>false</em>;</pre>
+
+<h3 id="Value" name="Value">値</h3>
+
+<p><code>selected</code> プロパティは、トラックがアクティブな場合に値が <code>true</code> になる Boolean の値です。 同時にアクティブにできる動画トラックは1つだけなので、別のトラックがアクティブなときに、あるトラックでこのプロパティを <code>true</code> に設定すると、アクティブであったトラックは非アクティブになります。</p>
+
+<h2 id="Specifications" name="Specifications">仕様</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様</th>
+ <th scope="col">状態</th>
+ <th scope="col">コメント</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('HTML WHATWG', '#dom-videotrack-selected', 'VideoTrack: selected')}}</td>
+ <td>{{Spec2('HTML WHATWG')}}</td>
+ <td> </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+
+
+<p>{{Compat("api.VideoTrack.selected")}}</p>