弹出从右上角由小变大
关闭收缩到右上角
/* 进入 */
.dialog-fade-enter-active {
animation: anim-open 0.7s !important;
}
/* 离开 */
.dialog-fade-leave-active {
animation: anim-close .7s !important;
}
@keyframes anim-open {
0% {
transform: translate(45%,-45%) scale(0);
}
}
@keyframes anim-close {
100% {
transform: translate(45%,-45%) scale(0);
}
}