egirlskey/packages/frontend/src/directives/click-anime.ts

34 lines
856 B
TypeScript
Raw Normal View History

2021-04-23 06:33:33 +00:00
import { Directive } from 'vue';
2021-11-11 17:02:25 +00:00
import { defaultStore } from '@/store';
2021-04-23 06:33:33 +00:00
export default {
2022-12-31 10:46:16 +00:00
mounted(el: HTMLElement, binding, vn) {
if (!defaultStore.state.animation) return;
2022-12-31 10:46:16 +00:00
const target = el.children[0];
if (target == null) return;
target.classList.add('_anime_bounce_standBy');
2021-04-24 09:38:38 +00:00
2021-04-23 06:33:33 +00:00
el.addEventListener('mousedown', () => {
2022-12-31 10:46:16 +00:00
target.classList.add('_anime_bounce_standBy');
target.classList.add('_anime_bounce_ready');
2021-04-23 06:33:33 +00:00
2022-12-31 10:46:16 +00:00
target.addEventListener('mouseleave', () => {
target.classList.remove('_anime_bounce_ready');
2021-04-23 06:33:33 +00:00
});
});
el.addEventListener('click', () => {
2022-12-31 10:46:16 +00:00
target.classList.add('_anime_bounce');
2021-04-23 06:33:33 +00:00
});
el.addEventListener('animationend', () => {
2022-12-31 10:46:16 +00:00
target.classList.remove('_anime_bounce_ready');
target.classList.remove('_anime_bounce');
target.classList.add('_anime_bounce_standBy');
2021-04-23 06:33:33 +00:00
});
},
2021-04-23 06:33:33 +00:00
} as Directive;