diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-23 02:46:32 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-01-29 21:52:21 +0900 |
commit | e36b4c015f550f035898df5f028e1d4a7b1cdce0 (patch) | |
tree | d57ad1b4d53326364abe52f565d07c199ed6f5c7 /files/ja/web/css/animation-play-state | |
parent | e14c7de9e3f01f965e58a2248798876bca607674 (diff) | |
download | translated-content-e36b4c015f550f035898df5f028e1d4a7b1cdce0.tar.gz translated-content-e36b4c015f550f035898df5f028e1d4a7b1cdce0.tar.bz2 translated-content-e36b4c015f550f035898df5f028e1d4a7b1cdce0.zip |
2021/08/13 時点の英語版に同期
Diffstat (limited to 'files/ja/web/css/animation-play-state')
-rw-r--r-- | files/ja/web/css/animation-play-state/index.md | 115 |
1 files changed, 65 insertions, 50 deletions
diff --git a/files/ja/web/css/animation-play-state/index.md b/files/ja/web/css/animation-play-state/index.md index ed4d05392a..42609a96ed 100644 --- a/files/ja/web/css/animation-play-state/index.md +++ b/files/ja/web/css/animation-play-state/index.md @@ -5,22 +5,21 @@ tags: - CSS - CSS アニメーション - CSS プロパティ - - Reference + - リファレンス translation_of: Web/CSS/animation-play-state --- -<div>{{CSSRef}}</div> +{{CSSRef}} -<p><a href="/ja/docs/CSS">CSS</a> の <strong><code>animation-play-state</code></strong> プロパティは、<strong>アニメーションが実行中か停止中か</strong>を設定します。</p> +**`animation-play-state`** は [CSS](/ja/docs/Web/CSS) のプロパティで、アニメーションが実行中か停止中かを設定します。 -<div>{{EmbedInteractiveExample("pages/css/animation-play-state.html")}}</div> +{{EmbedInteractiveExample("pages/css/animation-play-state.html")}} -<p class="hidden">このデモのソースファイルは GitHub リポジトリに格納されています。デモプロジェクトに協力したい場合は、 <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> をクローンしてプルリクエストを送信してください。</p> +停止したアニメーションを再開すると、アニメーションの流れの最初からではなく、停止した位置からアニメーションが始まります。 -<p>停止したアニメーションを再開すると、アニメーションの流れの最初からではなく、停止した位置からアニメーションが始まります。</p> +## 構文 -<h2 id="Syntax" name="Syntax">構文</h2> - -<pre class="brush:css no-line-numbers">/* 単一のアニメーション */ +```css +/* 単一のアニメーション */ animation-play-state: running; animation-play-state: paused; @@ -30,59 +29,75 @@ animation-play-state: paused, running, running; /* グローバル値 */ animation-play-state: inherit; animation-play-state: initial; +animation-play-state: revert; animation-play-state: unset; -</pre> +``` + +### 値 + +- `running` + - : **アニメーション**が現在**実行中**です。 +- `paused` + - : **アニメーション**が現在**停止中**です。 + +> **Note:** `animation-*` プロパティにコンマ区切りで複数の値を指定した場合、 {{cssxref("animation-name")}} プロパティで指定したアニメーションに割り当てられますが、いくつあるかによって異なる方法で割り当てられます。詳しくは、[複数のアニメーションプロパティ値の設定](/ja/docs/Web/CSS/CSS_Animations/Using_CSS_animations#setting_multiple_animation_property_values) を参照してください。 + +## 公式定義 + +{{cssinfo}} + +## 形式文法 + +{{csssyntax}} + +## 例 + +### 停止中のアニメーション -<h3 id="Values" name="Values">値</h3> +#### HTML -<dl> - <dt><code>running</code></dt> - <dd><strong>アニメーション</strong>が現在<strong>実行中</strong>です。</dd> - <dt><code>paused</code></dt> - <dd><strong>アニメーション</strong>が現在<strong>停止中</strong>です。</dd> -</dl> +```html +<div class="box"></div> +``` -<div class="note"> -<p><strong>メモ</strong>: <code>animation-*</code> プロパティにコンマ区切りで複数の値を指定した場合、 {{cssxref("animation-name")}} プロパティで指定したアニメーションに割り当てられますが、いくつあるかによって異なる方法で割り当てられます。詳しくは、<a href="/ja/docs/Web/CSS/CSS_Animations/Using_CSS_animations#Setting_multiple_animation_property_values">複数のアニメーションプロパティ値の設定</a> を参照してください。</p> -</div> +#### CSS -<h3 id="Formal_syntax" name="Formal_syntax">形式文法</h3> +```css +.box { + background-color: rebeccapurple; + border-radius: 10px; + width: 100px; + height: 100px; + animation-name: rotate; + animation-duration: 0.7s; + animation-play-state: paused; +} -<pre class="syntaxbox"><code>{{csssyntax}}</code> -</pre> +@keyframes rotate { + 0% { + transform: rotate(0); + } + 100% { + transform: rotate(360deg); + } +} +``` -<p>{{cssinfo}}</p> +#### 結果 -<h2 id="Examples" name="Examples">例</h2> +{{EmbedLiveSample("Examples","100%","250")}} -<p>例は <a href="/ja/docs/Web/CSS/CSS_Animations/Using_CSS_animations" title="CSS/CSS animations">CSS アニメーション</a>を参照してください。</p> +例は [CSS アニメーション](/ja/docs/Web/CSS/CSS_Animations/Using_CSS_animations)を参照してください。 -<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('CSS3 Animations', '#animation-play-state', 'animation-play-state')}}</td> - <td>{{Spec2('CSS3 Animations')}}</td> - <td>初回定義</td> - </tr> - </tbody> -</table> +{{Specifications}} -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2> +## ブラウザーの互換性 -<p>{{Compat("css.properties.animation-play-state")}}</p> +{{Compat}} -<h2 id="See_also" name="See_also">関連情報</h2> +## 関連情報 -<ul> - <li><a href="/ja/docs/Web/CSS/CSS_Animations/Using_CSS_animations" title="Tutorial about CSS animations">CSS アニメーションの使用</a></li> - <li>JavaScript {{domxref("AnimationEvent")}} API</li> -</ul> +- [CSS アニメーションの使用](/ja/docs/Web/CSS/CSS_Animations/Using_CSS_animations) +- JavaScript の {{domxref("AnimationEvent")}} API |