From 3095eac801b17dc6622c714d3d5fb31efe76494c Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sun, 23 Jan 2022 13:24:29 +0900 Subject: 2021/08/13 時点の英語版に基づき新規翻訳 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/css/_colon_playing/index.md | 48 ++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 files/ja/web/css/_colon_playing/index.md (limited to 'files') diff --git a/files/ja/web/css/_colon_playing/index.md b/files/ja/web/css/_colon_playing/index.md new file mode 100644 index 0000000000..b17a8eff42 --- /dev/null +++ b/files/ja/web/css/_colon_playing/index.md @@ -0,0 +1,48 @@ +--- +title: ':playing' +slug: Web/CSS/:playing +tags: + - CSS + - 擬似クラス + - リファレンス + - playing +browser-compat: css.selectors.playing +translation_of: Web/CSS/:playing +--- +{{CSSRef}}{{SeeCompatTable}} + +**`:playing`** は [CSS](/ja/docs/Web/CSS) の[擬似クラス](/ja/docs/Web/CSS/Pseudo-classes)セレクターで、「再生中」または「停止中」の状態を持つ音声、動画、その他のリソースの要素が「再生中」である場合に一致する、リソース状態擬似クラスです。 + +バッファリング状態にある場合や、ユーザーの操作以外で停止している状態の場合も、リソースが再生中として扱われます。 + +```css +:playing { + +} +``` + +## 構文 + +{{csssyntax}} + +## 例 + +### CSS + +```css +:playing { + border: 5px solid green; +} +``` + +## 仕様書 + +{{Specifications}} + +## ブラウザーの互換性 + +{{Compat}} + +## 関連情報 + +- {{cssxref(":paused")}} -- cgit v1.2.3-54-g00ecf