728x90
반응형
var ani = document.querySelector(".ani");
ani.addEventListener("animationstart", function(e) {
console.log("시작");
}, false);
ani.addEventListener("animationend", function(e) {
console.log("종료");
}, false);
728x90
반응형