--- title: GlobalEventHandler.onanimationend slug: Web/API/GlobalEventHandlers/onanimationend translation_of: Web/API/GlobalEventHandlers/onanimationend ---
Обработчик события {{event("animationend")}}. Это событие вызывается когда CSS-анимация достигает конца своего активного периода, который вычисляется как ({{cssxref("animation-duration")}} * {{cssxref("animation-iteration-count")}}) + {{cssxref("animation-delay")}}.
var animEndHandler = target.onanimationend; target.onanimationend = {{jsxref("Function")}}
A {{jsxref ("Function")}} вызывается, когда происходит событие {{event ("animationend")}}, указывающее, что анимация CSS начинается с цели, где целевой объект является HTML-элементом ({{ Domxref ("HTMLElement")}}), документ ({{domxref ("Document")}}) или окно ({{domxref ("Window")}}). Функция получает в качестве входного параметра один параметр: {{domxref ("AnimationEvent")}} объект, описывающий событие, которое произошло.
{{Page("/en-US/docs/Web/API/GlobalEventHandlers/onanimationstart", "Example")}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS3 Animations','#eventdef-animationevent-animationend','onanimationend')}} | {{Spec2('CSS3 Animations')}} |
{{Compat("api.GlobalEventHandlers.onanimationend")}}