aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/globaleventhandlers/onanimationend/index.html
blob: f8de26a35917c61609a1c40c0301f850b43de183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
title: GlobalEventHandler.onanimationend
slug: Web/API/GlobalEventHandlers/onanimationend
translation_of: Web/API/GlobalEventHandlers/onanimationend
---
<div>{{APIRef("CSS3 Animations")}}</div>

<p>Обработчик события {{event("animationend")}}. Это событие вызывается когда <a href="/en-US/docs/Web/CSS/CSS_Animations">CSS анимация</a> достигает конца своего активного периода, который вычисляется как ({{cssxref("animation-duration")}} * {{cssxref("animation-iteration-count")}}) + {{cssxref("animation-delay")}}.</p>

<h2 id="Синтаксис">Синтаксис</h2>

<pre class="syntaxbox">var <em>animEndHandler</em> = <em>target</em>.onanimationend;

<em>target</em>.onanimationend = <em>{{jsxref("Function")}}</em>
</pre>

<h3 id="Значение">Значение</h3>

<p>A {{jsxref ("Function")}} вызывается, когда происходит событие {{event ("animationend")}}, указывающее, что анимация CSS начинается с цели, где целевой объект является HTML-элементом ({{ Domxref ("HTMLElement")}}), документ ({{domxref ("Document")}}) или окно ({{domxref ("Window")}}). Функция получает в качестве входного параметра один параметр: {{domxref ("AnimationEvent")}} объект, описывающий событие, которое произошло.</p>

<h2 id="Example">Example</h2>

<p>{{Page("/en-US/docs/Web/API/GlobalEventHandlers/onanimationstart", "Example")}}</p>

<h2 id="Specification">Specification</h2>

<table class="spectable standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('CSS3 Animations','#eventdef-animationevent-animationend','onanimationend')}}</td>
   <td>{{Spec2('CSS3 Animations')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2>

<p>{{Compat("api.GlobalEventHandlers.onanimationend")}}</p>

<h2 id="Смотрите_также">Смотрите также</h2>

<ul>
 <li>The {{event("animationend")}} event this event handler is triggered by</li>
 <li>{{domxref("AnimationEvent")}}</li>
 <li>The {{event("animationstart")}} event</li>
</ul>