From 6070c7551607aaff90a85631aeaee9b9b5024551 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Mon, 14 Oct 2024 17:59:51 +0900 Subject: [PATCH] =?UTF-8?q?2024/02/13=20=E6=99=82=E7=82=B9=E3=81=AE?= =?UTF-8?q?=E8=8B=B1=E8=AA=9E=E7=89=88=E3=81=AB=E5=9F=BA=E3=81=A5=E3=81=8D?= =?UTF-8?q?=E6=96=B0=E8=A6=8F=E7=BF=BB=E8=A8=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/api/htmlvideoelement/poster/index.md | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 files/ja/web/api/htmlvideoelement/poster/index.md diff --git a/files/ja/web/api/htmlvideoelement/poster/index.md b/files/ja/web/api/htmlvideoelement/poster/index.md new file mode 100644 index 00000000000000..b0f0f36c848858 --- /dev/null +++ b/files/ja/web/api/htmlvideoelement/poster/index.md @@ -0,0 +1,39 @@ +--- +title: "HTMLVideoElement: poster プロパティ" +short-title: poster +slug: Web/API/HTMLVideoElement/poster +l10n: + sourceCommit: 85e913af9f01e216149d3381586eb0c784fefff7 +--- + +{{APIRef("HTML DOM")}} + +**`poster`** は {{domxref("HTMLVideoElement")}} インターフェイスのプロパティで、動画データが利用できない場合に表示させる画像の URL を反映する文字列です。プロパティが有効な URL を表していない場合、ポスターフレームは表示されません。 + +これは、{{HTMLElement("video")}} 要素の `poster` 属性を反映しています。 + +## 値 + +文字列です。 + +## 例 + +```html + +``` + +```js +const el = document.getElementById("media"); +console.log(el.poster); // 出力: "https://example.com/poster.jpg" +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}}