Skip to content

Commit

Permalink
2024/02/13 時点の英語版に基づき新規翻訳
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Oct 14, 2024
1 parent ea0b454 commit 4f55c69
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions files/ja/web/api/htmlvideoelement/poster/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
title: "HTMLVideoElement: poster プロパティ"
short-title: poster
slug: Web/API/HTMLVideoElement/poster
l10n:
sourceCommit: 4cbb657f882495b1cd18cbbaa8d1c5237bce4eb8
---

{{APIRef("HTML DOM")}}

**`poster`** は {{domxref("HTMLVideoElement")}} インターフェイスのプロパティで、動画データが利用できない場合に表示させる画像の URL を反映する文字列です。プロパティが有効な URL を表していない場合、ポスターフレームは表示されません。

これは、{{HTMLElement("video")}} 要素の `poster` 属性を反映しています。

##

文字列です。

##

```html
<video
id="media"
src="https://example.com/video.mp4"
poster="https://example.com/poster.jpg"></video>
```

```js
const el = document.getElementById("media");
console.log(el.poster); // 出力: "https://example.com/poster.jpg"
```

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

0 comments on commit 4f55c69

Please sign in to comment.