初始化拉取,原文件名:admin-plus-webpack5
Some checks failed
Call HTTPS API / build (push) Has been cancelled

This commit is contained in:
2025-12-26 20:43:10 +08:00
parent 7c68ec3a42
commit 3e2da1115e
420 changed files with 75413 additions and 2 deletions

View File

@@ -0,0 +1,39 @@
/**
* @description vue过渡动画
*/
.fade-transform {
&-leave-active,
&-enter-active {
transition: $base-transition;
}
&-enter,
&-leave-to {
opacity: 0;
}
}
.no-transform {
&-leave-active,
&-enter-active {
transition: none;
}
&-enter,
&-leave-to {
opacity: 0;
}
}
/**
* @description 旋转动画
*/
@keyframes rotate {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}