ddmt-tool/Tool/animate.js
2024-09-29 17:46:31 +08:00

12 lines
297 B
JavaScript

/**
* 动画函数
* @param {HTMLElement} event
* @param {string} classname
*/
export function animate(event, classname) {
event.classList.add(classname);
event.addEventListener('animationend', (event) => {
event.target.classList.remove(classname); // 清洗动画
});
}