diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/htmlpictureelement/index.html | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/ja/web/api/htmlpictureelement/index.html')
-rw-r--r-- | files/ja/web/api/htmlpictureelement/index.html | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/files/ja/web/api/htmlpictureelement/index.html b/files/ja/web/api/htmlpictureelement/index.html new file mode 100644 index 0000000000..bb8692637f --- /dev/null +++ b/files/ja/web/api/htmlpictureelement/index.html @@ -0,0 +1,98 @@ +--- +title: HTMLPictureElement +slug: Web/API/HTMLPictureElement +tags: + - API + - Experimental + - HTML DOM + - Interface + - Reference +translation_of: Web/API/HTMLPictureElement +--- +<div>{{APIRef("HTML DOM")}}{{SeeCompatTable}}</div> + +<p><code><strong>HTMLPictureElement</strong></code> インタフェースは、{{HTMLElement("picture")}} HTML 要素をあらわします。これは固有のプロパティやメソッドを実装していません。</p> + +<h2 id="プロパティ">プロパティ</h2> + +<p><em>固有のプロパティはありませんが、親要素である {{domxref("HTMLElement")}} のプロパティを継承します。</em></p> + +<h2 id="メソッド">メソッド</h2> + +<p><em>固有のメソッドはありませんが、親要素である {{domxref("HTMLElement")}} のメソッドを継承します。</em></p> + +<h2 id="仕様">仕様</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', "edits.html#the-picture-element", "HTMLPictureElement")}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td>初回定義</td> + </tr> + </tbody> +</table> + +<h2 id="ブラウザ実装状況">ブラウザ実装状況</h2> + +<p>{{CompatibilityTable}}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>機能</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari (WebKit)</th> + </tr> + <tr> + <td>基本サポート</td> + <td>38</td> + <td>{{CompatGeckoDesktop(33)}}<sup>[1]</sup></td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>機能</th> + <th>Android</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Phone</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>基本サポート</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatGeckoMobile(33)}}<sup>[1]</sup></td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<p>[1] Gecko は <code>dom.image.picture.enabled</code> の設定をデフォルトで <code>false</code> として実装しています。</p> + +<h2 id="関連項目">関連項目</h2> + +<ul> + <li>これを実装している {{HTMLElement("picture")}} HTML 要素。</li> + <li>{{domxref("HTMLImageElement")}} と {{domxref("HTMLSourceElement")}} は、しばしば {{HTMLElement("picture")}} 要素と同時に使用されます。</li> +</ul> |