blob: 8bca8b046fccc1bf42eb51a897f1c89cd3a3109e (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
---
title: animationend
slug: Web/Events/animationend
translation_of: Web/API/HTMLElement/animationend_event
---
<p>El evento <code>animationend</code> es lanzado cuando una animación CSS se ha completado.</p>
<h2 id="Información_General">Información General</h2>
<dl>
<dt style="float: left; text-align: right; width: 120px;">Especificación</dt>
<dd style="margin: 0 0 0 120px;"><a class="external" href="http://www.w3.org/TR/css3-animations/#animation-events">CSS Animations</a></dd>
<dt style="float: left; text-align: right; width: 120px;">Interface</dt>
<dd style="margin: 0 0 0 120px;">AnimationEvent</dd>
<dt style="float: left; text-align: right; width: 120px;">Bubbles</dt>
<dd style="margin: 0 0 0 120px;">Si</dd>
<dt style="float: left; text-align: right; width: 120px;">Cancelable</dt>
<dd style="margin: 0 0 0 120px;">No</dd>
<dt style="float: left; text-align: right; width: 120px;">Target</dt>
<dd style="margin: 0 0 0 120px;">Document, Element</dd>
<dt style="float: left; text-align: right; width: 120px;">Acción por defecto</dt>
<dd style="margin: 0 0 0 120px;">None</dd>
</dl>
<h2 id="Propiedades">Propiedades</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Propiedad</th>
<th scope="col">Tipo</th>
<th scope="col">Descripción</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>target</code> {{ReadOnlyInline}}</td>
<td>{{domxref("EventTarget")}}</td>
<td>The event target (the topmost target in the DOM tree).</td>
</tr>
<tr>
<td><code>type</code> {{ReadOnlyInline}}</td>
<td>{{domxref("DOMString")}}</td>
<td>The type of event.</td>
</tr>
<tr>
<td><code>bubbles</code> {{ReadOnlyInline}}</td>
<td><code>boolean</code></td>
<td>Does the event normally bubble?</td>
</tr>
<tr>
<td><code>cancelable</code> {{ReadOnlyInline}}</td>
<td><code>boolean</code></td>
<td>Is it possible to cancel the event?</td>
</tr>
<tr>
<td><code>animationName</code> {{ReadOnlyInline}}</td>
<td>{{domxref("DOMString")}}</td>
<td>The name of the CSS property associated with the transition.</td>
</tr>
<tr>
<td><code>elapsedTime</code> {{ReadOnlyInline}}</td>
<td>Float</td>
<td>The amount of time the animation has been running, in seconds, when this event fired, excluding any time the animation was paused. For an "animationstart" event, the elapsedTime is zero unless there was a negative value for <code>animation-delay</code>, in which case the event will be fired with an elapsedTime of (-1 * delay).</td>
</tr>
</tbody>
</table>
<h2 id="Eventos_relacionados">Eventos relacionados</h2>
<ul>
<li>{{Event("animationstart")}}</li>
<li>{{Event("animationend")}}</li>
<li>{{Event("animationiteration")}}</li>
</ul>
<h2 id="Ver_también">Ver también</h2>
<ul>
<li><a href="/en-US/docs/CSS/Using_CSS_animations" title="/en-US/docs/CSS/Using_CSS_animations">Using CSS Animations</a></li>
</ul>
|