下载模块 Init

This commit is contained in:
zhongluofeng
2026-07-20 18:28:34 +08:00
parent e84958e0fc
commit 548b022426
37 changed files with 4795 additions and 65 deletions
+16
View File
@@ -182,4 +182,20 @@
100% {
left: 100%;
}
}
/* 模块 Tab 内容切换动画(全局,所有模块通用) */
.tab-animate {
animation: tabFadeSlide 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes tabFadeSlide {
from {
opacity: 0;
transform: translateY(6px);
}
to {
opacity: 1;
transform: translateY(0);
}
}