前言

css 的 animation 动画的相关的事件,比如动画开始,动画结束,在 dom 中也有相关的事件可以监听。

animationstart

动画开始的事件

  1. const animated = document.querySelector(".animated");
  2. animated.addEventListener("animationstart", () => {
  3. console.log("Animation started");
  4. });

animationend

动画结束的事件。

  1. const animated = document.querySelector(".animated");
  2. animated.onanimationend = () => {
  3. console.log("Animation ended");
  4. };