aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/mediatracksupportedconstraints/facingmode/index.html
blob: 923b3f21d4798f34fc81d90ef9bb06521a1908b3 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
title: MediaTrackSupportedConstraints.facingMode
slug: Web/API/MediaTrackSupportedConstraints/facingMode
tags:
  - API
  - Constraints
  - Media
  - Media Capture and Streams API
  - Media Streams API
  - MediaTrackSupportedConstraints
  - Property
  - Web
  - WebRTC
  - facingMode
translation_of: Web/API/MediaTrackSupportedConstraints/facingMode
---
<p>{{APIRef("Media Capture and Streams")}}</p>

<p>{{domxref("MediaTrackSupportedConstraints")}} 辞書の <strong><code>facingMode</code></strong> プロパティは読み取り専用のブール値で、{{Glossary("user agent", "ユーザーエージェント")}}<code>facingMode</code> の制約に対応している場合にのみ、 {{domxref("MediaDevices.getSupportedConstraints()")}} が返すオブジェクトに存在します (そして <code>true</code> に設定されます)。制約がサポートされていない場合はリストに含まれないので、この値は決して <code>false</code> にはなりません。</p>

<p>対応している制約の辞書にアクセスするには <code>navigator.mediaDevices.getSupportedConstraints()</code>を呼び出してください。</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox notranslate"><em>facingModeConstraintSupported</em> = <em>supportedConstraintsDictionary.</em>facingMode;</pre>

<h3 id="Value" name="Value"></h3>

<p>このプロパティは、ユーザーエージェントが <code>facingMode</code> 制約に対応している場合、辞書に存在します (そして、その値は常に <code>true</code> です)。このプロパティが存在しない場合、このプロパティは対応している制約ディクショナリから欠落しており、その値を見ようとすると {{jsxref("undefined")}} になります。</p>

<h2 id="Example" name="Example"></h2>

<div class="hidden">
<h3 id="HTML">HTML</h3>

<pre class="brush: html notranslate">&lt;div id="result"&gt;
&lt;/div&gt;</pre>

<h3 id="CSS">CSS</h3>

<pre class="brush: css notranslate">#result {
  font: 14px "Arial", sans-serif;
}</pre>

<h3 id="JavaScript">JavaScript</h3>
</div>

<pre class="brush: js notranslate">let result = document.getElementById("result");

if (navigator.mediaDevices.getSupportedConstraints().facingMode) {
    result.innerHTML = "Supported!";
} else {
    result.innerHTML = "Not supported!";
}</pre>

<h3 id="Result" name="Result">結果</h3>

<p>{{ EmbedLiveSample('Example', 600, 80) }}</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('Media Capture', '#dom-mediatracksupportedconstraints-facingmode', 'facingMode') }}</td>
   <td>{{ Spec2('Media Capture') }}</td>
   <td>初回定義</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<p>{{Compat("api.MediaTrackSupportedConstraints.facingMode")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li><a href="/ja/docs/Web/API/Media_Streams_API">Media Capture and Streams API</a></li>
 <li>{{domxref("MediaDevices.getSupportedConstraints()")}}</li>
 <li>{{domxref("MediaTrackSupportedConstraints")}}</li>
 <li>{{domxref("MediaStreamTrack")}}</li>
</ul>