jormungandr-bite/packages/client/src/directives/anim.ts

19 lines
483 B
TypeScript
Raw Normal View History

2023-01-12 21:40:33 -07:00
import { Directive } from "vue";
2021-02-06 18:31:18 -07:00
export default {
beforeMount(src, binding, vn) {
2023-01-12 21:40:33 -07:00
src.style.opacity = "0";
src.style.transform = "scale(0.9)";
2021-02-06 18:31:18 -07:00
// ページネーションと相性が悪いので
//if (typeof binding.value === 'number') src.style.transitionDelay = `${binding.value * 30}ms`;
2023-01-12 21:40:33 -07:00
src.classList.add("_zoom");
2021-02-06 18:31:18 -07:00
},
mounted(src, binding, vn) {
2022-01-15 18:14:14 -07:00
window.setTimeout(() => {
2023-01-12 21:40:33 -07:00
src.style.opacity = "1";
src.style.transform = "none";
2021-02-06 18:31:18 -07:00
}, 1);
},
} as Directive;