mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-28 00:42:12 +08:00
28 lines
462 B
Plaintext
28 lines
462 B
Plaintext
// zoom-out
|
|
.zoom-out-enter-active,
|
|
.zoom-out-leave-active {
|
|
transition: opacity 0.2 ease-in-out, transform 0.2s ease-out;
|
|
}
|
|
|
|
.zoom-out-enter-from,
|
|
.zoom-out-leave-to {
|
|
opacity: 0;
|
|
transform: scale(0);
|
|
}
|
|
|
|
// zoom-fade
|
|
.zoom-fade-enter-active,
|
|
.zoom-fade-leave-active {
|
|
transition: transform 0.2s, opacity 0.2s ease-out;
|
|
}
|
|
|
|
.zoom-fade-enter-from {
|
|
opacity: 0;
|
|
transform: scale(0.97);
|
|
}
|
|
|
|
.zoom-fade-leave-to {
|
|
opacity: 0;
|
|
transform: scale(1.03);
|
|
}
|