aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmlelement/animationiteration_event
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/htmlelement/animationiteration_event
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/htmlelement/animationiteration_event')
-rw-r--r--files/ja/web/api/htmlelement/animationiteration_event/index.html184
1 files changed, 184 insertions, 0 deletions
diff --git a/files/ja/web/api/htmlelement/animationiteration_event/index.html b/files/ja/web/api/htmlelement/animationiteration_event/index.html
new file mode 100644
index 0000000000..5423651c77
--- /dev/null
+++ b/files/ja/web/api/htmlelement/animationiteration_event/index.html
@@ -0,0 +1,184 @@
+---
+title: 'HTMLElement: animationiteration イベント'
+slug: Web/API/HTMLElement/animationiteration_event
+tags:
+ - Animation
+ - AnimationEvent
+ - CSS Animations
+ - CSS アニメーション
+ - Event
+ - Reference
+ - animationiteration
+ - イベント
+translation_of: Web/API/HTMLElement/animationiteration_event
+---
+<div>{{APIRef}}</div>
+
+<p><strong><code>animationiteration</code></strong> イベントは、 <a href="/ja/docs/Web/CSS/CSS_Animations">CSS アニメーション</a>の反復が1回分終了し、次の回が始まったときに発生します。このイベントは {{domxref("HTMLElement/animationend_event", "animationend")}} イベントと同時には発生せず、従って <code>animation-iteration-count</code> が1のアニメーションでは発生しません。</p>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th>バブリング</th>
+ <td>あり</td>
+ </tr>
+ <tr>
+ <th>キャンセル</th>
+ <td>不可</td>
+ </tr>
+ <tr>
+ <th>インターフェイス</th>
+ <td>{{domxref("AnimationEvent")}}</td>
+ </tr>
+ <tr>
+ <th>イベントハンドラープロパティ</th>
+ <td>{{domxref("GlobalEventHandlers/onanimationiteration","onanimationiteration")}}</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Examples" name="Examples">例</h2>
+
+<p>このコードは <code>animationiteration</code> を使用して、アニメーションの反復が終了した回数を追跡します。</p>
+
+<pre class="brush: js">const animated = document.querySelector('.animated');
+
+let iterationCount = 0;
+
+animated.addEventListener('animationiteration', () =&gt; {
+ iterationCount++;
+ console.log(`アニメーション反復回数: ${iterationCount}`);
+});</pre>
+
+<p>同様に、 <code>onanimationiteration</code> イベントハンドラープロパティを使用するとこうなります。</p>
+
+<pre class="brush: js">const animated = document.querySelector('.animated');
+
+let iterationCount = 0;
+
+animated.onanimationiteration = () =&gt; {
+ iterationCount++;
+ console.log(`アニメーション反復回数: ${iterationCount}`);
+};</pre>
+
+<h3 id="Live_example" name="Live_example">ライブデモ</h3>
+
+<h4 id="HTML">HTML</h4>
+
+<pre class="brush: html">&lt;div class="animation-example"&gt;
+ &lt;div class="container"&gt;
+ &lt;p class="animation"&gt;あなたは私たちの惑星を訪れるために寒い夜を選びました。&lt;/p&gt;
+ &lt;/div&gt;
+ &lt;button class="activate" type="button"&gt;アニメーションを有効にする&lt;/button&gt;
+ &lt;div class="event-log"&gt;&lt;/div&gt;
+&lt;/div&gt;
+</pre>
+
+<h4 id="CSS">CSS</h4>
+
+<pre class="brush: css">.container {
+ height: 3rem;
+}
+
+.event-log {
+ width: 25rem;
+ height: 2rem;
+ border: 1px solid black;
+ margin: 0.2rem;
+ padding: 0.2rem;
+}
+
+.animation.active {
+ animation-duration: 2s;
+ animation-name: slidein;
+ animation-iteration-count: 2;
+}
+
+@keyframes slidein {
+  from {
+    transform: translateX(100%) scaleX(3);
+  }
+  to {
+    transform: translateX(0) scaleX(1);
+  }
+}
+</pre>
+
+<h4 id="JS" name="JS">JS</h4>
+
+<pre class="brush: js">const animation = document.querySelector('p.animation');
+const animationEventLog = document.querySelector('.animation-example&gt;.event-log');
+const applyAnimation = document.querySelector('.animation-example&gt;button.activate');
+let iterationCount = 0;
+
+animation.addEventListener('animationstart', () =&gt; {
+ animationEventLog.textContent = `${animationEventLog.textContent}'アニメーション開始' `;
+});
+
+animation.addEventListener('animationiteration', () =&gt; {
+ iterationCount++;
+ animationEventLog.textContent = `${animationEventLog.textContent}'アニメーション反復: ${iterationCount}' `;
+});
+
+animation.addEventListener('animationend', () =&gt; {
+ animationEventLog.textContent = `${animationEventLog.textContent}'アニメーション終了'`;
+ animation.classList.remove('active');
+ applyAnimation.textContent = "アニメーションを有効にする";
+});
+
+animation.addEventListener('animationcancel', () =&gt; {
+ animationEventLog.textContent = `${animationEventLog.textContent}'アニメーション取り消し'`;
+});
+
+applyAnimation.addEventListener('click', () =&gt; {
+ animation.classList.toggle('active');
+ animationEventLog.textContent = '';
+ iterationCount = 0;
+ let active = animation.classList.contains('active');
+ if (active) {
+ applyAnimation.textContent = "アニメーションを取り消す";
+ } else {
+ applyAnimation.textContent = "アニメーションを有効にする";
+ }
+});
+</pre>
+
+<h4 id="Result" name="Result">結果</h4>
+
+<p>{{ EmbedLiveSample('Live_example', '100%', '150px') }}</p>
+
+<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", "#eventdef-animationevent-animationiteration")}}</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.HTMLElement.animationiteration_event")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li><a href="/ja/docs/Web/CSS/CSS_Animations">CSS アニメーション</a></li>
+ <li><a href="/ja/docs/Web/CSS/CSS_Animations/Using_CSS_animations">CSS アニメーションの使用</a></li>
+ <li>{{domxref("AnimationEvent")}}</li>
+ <li>関連イベント: {{domxref("HTMLElement/animationstart_event", "animationstart")}}, {{domxref("HTMLElement/animationend_event", "animationend")}}, {{domxref("HTMLElement/animationcancel_event", "animationcancel")}}</li>
+ <li>{{domxref("Document")}} を対象としたこのイベント: <code><a href="/ja/docs/Web/API/Document/animationiteration_event">animationiteration</a></code></li>
+ <li>{{domxref("Window")}} を対象としたこのイベント: <code><a href="/ja/docs/Web/API/Window/animationiteration_event">animationiteration</a></code></li>
+</ul>