GlobalEventHandler.onanimationend
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2020.
Обработчик события unsupported templ: event. Это событие вызывается когда CSS-анимация достигает конца своего активного периода, который вычисляется как (animation-duration
* animation-iteration-count
) + animation-delay
.
Синтаксис
var animEndHandler = target.onanimationend;
target.onanimationend = Function
Значение
A Function
вызывается, когда происходит событие unsupported templ: event, указывающее, что анимация CSS начинается с цели, где целевой объект является HTML-элементом (HTMLElement
), документ (Document
) или окно (Window
). Функция получает в качестве входного параметра один параметр: AnimationEvent
объект, описывающий событие, которое произошло.
Спецификации
Specification |
---|
CSS Animations Level 1 # eventdef-globaleventhandlers-animationend |
Совместимость с браузерами
BCD tables only load in the browser
Смотрите также
- The
unsupported templ: eventevent this event handler is triggered by AnimationEvent
- The
unsupported templ: eventevent