aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/animationevent
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/animationevent
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/animationevent')
-rw-r--r--files/ja/web/api/animationevent/elapsedtime/index.html54
-rw-r--r--files/ja/web/api/animationevent/index.html79
2 files changed, 133 insertions, 0 deletions
diff --git a/files/ja/web/api/animationevent/elapsedtime/index.html b/files/ja/web/api/animationevent/elapsedtime/index.html
new file mode 100644
index 0000000000..531af71163
--- /dev/null
+++ b/files/ja/web/api/animationevent/elapsedtime/index.html
@@ -0,0 +1,54 @@
+---
+title: AnimationEvent.elapsedTime
+slug: Web/API/AnimationEvent/elapsedTime
+tags:
+ - API
+ - AnimationEvent
+ - CSSOM
+ - Experimental
+ - Property
+ - Reference
+ - Web Animations
+ - プロパティ
+translation_of: Web/API/AnimationEvent/elapsedTime
+---
+<div>{{SeeCompatTable}}{{ apiref("Web Animations API") }}</div>
+
+<p><code><strong>AnimationEvent.elapsedTime</strong></code> は読み取り専用のプロパティで、アニメーションが開始されてからの秒数を <code>float</code> 型で表します。このイベントが発生したとき、アニメーションが停止した場合を除いて常に設定されます。 {{domxref("HTMLElement/animationstart_event", "animationstart")}} イベントにおいては <code>elapsedTime</code> は <code>0.0</code> になりますが、 {{cssxref("animation-delay")}} が負の値の場合は、このイベントは <code>elapsedTime</code> が <code>(-1 * </code><em>待ち時間</em><code>)</code> であるときに発生します。.</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox">time = <em>AnimationEvent</em>.elapsedTime</pre>
+
+<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', '#dom-animationevent-elapsedtime', 'AnimationEvent.elapsedTime') }}</td>
+ <td>{{ Spec2('CSS3 Animations')}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("api.AnimationEvent.elapsedTime")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/CSS/CSS_Animations/Using_CSS_animations">CSS アニメーションの使用</a></li>
+ <li>アニメーションに関する CSS プロパティと @ 規則: {{cssxref("animation")}}, {{cssxref("animation-delay")}}, {{cssxref("animation-direction")}}, {{cssxref("animation-duration")}}, {{cssxref("animation-fill-mode")}}, {{cssxref("animation-iteration-count")}}, {{cssxref("animation-name")}}, {{cssxref("animation-play-state")}}, {{cssxref("animation-timing-function")}}, {{cssxref("@keyframes")}}.</li>
+ <li>所属先の {{domxref("AnimationEvent")}} インターフェイス</li>
+</ul>
diff --git a/files/ja/web/api/animationevent/index.html b/files/ja/web/api/animationevent/index.html
new file mode 100644
index 0000000000..749398b912
--- /dev/null
+++ b/files/ja/web/api/animationevent/index.html
@@ -0,0 +1,79 @@
+---
+title: AnimationEvent
+slug: Web/API/AnimationEvent
+tags:
+ - API
+ - CSS アニメーション
+ - Experimental
+ - Interface
+ - Reference
+ - Web Animations
+ - インターフェイス
+translation_of: Web/API/AnimationEvent
+---
+<div>{{SeeCompatTable}}{{APIRef("Web Animations API")}}</div>
+
+<p><strong><code>AnimationEvent</code></strong> インターフェイスは、<a href="/ja/docs/Web/Guide/CSS/Using_CSS_animations">アニメーション</a>に関する情報を提供するイベントを表します。</p>
+
+<p>{{InheritanceDiagram}}</p>
+
+<h2 id="Constructor" name="Constructor">コンストラクター</h2>
+
+<dl>
+ <dt>{{domxref("AnimationEvent.AnimationEvent", "AnimationEvent()")}}</dt>
+ <dd>指定された引数で <code>AnimationEvent</code> イベントを生成します。</dd>
+</dl>
+
+<h2 id="Properties" name="Properties">プロパティ</h2>
+
+<p><em>親の {{domxref("Event")}} から継承されるプロパティもあります</em>。</p>
+
+<dl>
+ <dt>{{domxref("AnimationEvent.animationName")}} {{readonlyInline}}</dt>
+ <dd>{{domxref("DOMString")}} で、この変化に関連付けられた {{cssxref("animation-name")}} CSS プロパティの値を含みます。</dd>
+ <dt>{{domxref("AnimationEvent.elapsedTime")}} {{readonlyInline}}</dt>
+ <dd><code>float</code> 値で、アニメーションが実行された時間の長さを秒単位で表し、イベントが発生したときは、アニメーションが停止していた時間は除外されます。 <code>animationstart</code> イベントでは、 <code>elapsedTime</code> は、ふつう <code>0.0</code> となりますが、 {{cssxref("animation-delay")}} が負の値であった場合は例外で、この場合はイベントは <code>elapsedTime</code> に <code>(-1 * <var>delay</var>)</code> が入った状態でイベントが発生します。</dd>
+ <dt>{{domxref("AnimationEvent.pseudoElement")}} {{readonlyInline}}</dt>
+ <dd>{{domxref("DOMString")}} で、 <code>'::'</code> で始まり、アニメーションが実行される <a href="/ja/docs/Web/CSS/Pseudo-elements">疑似要素</a> の名前が入ります。このアニメーションが疑似要素ではなく要素で実行されている場合は、空文字列 <code>''</code> になります。</dd>
+</dl>
+
+<h2 id="Methods" name="Methods">メソッド</h2>
+
+<p><em>親の {{domxref("Event")}} から継承されるメソッドもあります</em>。</p>
+
+<dl>
+ <dt>{{domxref("AnimationEvent.initAnimationEvent()")}} {{non-standard_inline}}{{deprecated_inline}}</dt>
+ <dd>非推奨の {{domxref("Document.createEvent()", "Document.createEvent(\"AnimationEvent\")")}} メソッドを使用して作成された <code>AnimationEvent</code> を初期化します。</dd>
+</dl>
+
+<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", "#interface-animationevent", "AnimationEvent")}}</td>
+ <td>{{Spec2("CSS3 Animations")}}</td>
+ <td>初回定義</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
+
+<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
+
+<p>{{Compat("api.AnimationEvent")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/CSS/Using_CSS_animations">CSS アニメーションの使用</a></li>
+ <li>アニメーションに関する CSS プロパティと @-規則: {{cssxref("animation")}}, {{cssxref("animation-delay")}}, {{cssxref("animation-direction")}}, {{cssxref("animation-duration")}}, {{cssxref("animation-fill-mode")}}, {{cssxref("animation-iteration-count")}}, {{cssxref("animation-name")}}, {{cssxref("animation-play-state")}}, {{cssxref("animation-timing-function")}}, {{cssxref("@keyframes")}}.</li>
+</ul>