--- title: GlobalEventHandler.onanimationend slug: Web/API/GlobalEventHandlers/onanimationend translation_of: Web/API/GlobalEventHandlers/onanimationend ---
{{APIRef("CSS3 Animations")}}

Обработчик события {{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")}} объект, описывающий событие, которое произошло.

Example

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

Specification

Specification Status Comment
{{SpecName('CSS3 Animations','#eventdef-animationevent-animationend','onanimationend')}} {{Spec2('CSS3 Animations')}}  

Совместимость с браузерами

{{Compat("api.GlobalEventHandlers.onanimationend")}}

Смотрите также