web异常待修复:屏蔽统计
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user