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