web异常待修复:屏蔽统计

This commit is contained in:
Alex Yang
2025-11-24 13:26:01 +08:00
parent ce4a8d8127
commit a59f655769
6 changed files with 430 additions and 23 deletions

View File

@@ -64,6 +64,57 @@
opacity: 0;
}
/* 优化的表格过渡动画 */
.table-transition {
transition: all 0.3s ease;
}
/* 表格行淡入动画 */
.table-row-fade-in {
animation: fadeIn 0.3s ease-out;
}
/* 表格行淡出动画 */
.table-row-fade-out {
animation: fadeOut 0.3s ease-in;
opacity: 0;
}
/* 表格行高亮效果 */
.table-row-highlight {
background-color: rgba(75, 192, 192, 0.2) !important;
transition: background-color 0.3s ease;
animation: highlightPulse 1s ease;
}
@keyframes highlightPulse {
0% {
background-color: rgba(75, 192, 192, 0.2);
}
50% {
background-color: rgba(75, 192, 192, 0.4);
}
100% {
background-color: rgba(75, 192, 192, 0.0);
}
}
/* 数字更新完成动画 */
.number-update-complete {
animation: numberComplete 0.3s ease;
}
@keyframes numberComplete {
0% {
color: #2196F3;
font-weight: bold;
}
100% {
color: inherit;
font-weight: inherit;
}
}
@keyframes fadeIn {
from {
opacity: 0;