This commit is contained in:
lcw
2026-03-18 11:07:40 +08:00
parent 9fb505eb8e
commit c181530639
71 changed files with 2331 additions and 1027 deletions

View File

@ -430,10 +430,13 @@
// 警情闪速动画
@keyframes alert-flash {
0%, 100% {
0%,
100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.3;
transform: scale(1.05);
@ -444,19 +447,25 @@
0% {
box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(255, 77, 79, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(255, 77, 79, 0);
}
}
@keyframes alert-blink {
0%, 49% {
0%,
49% {
opacity: 1;
}
50%, 100% {
50%,
100% {
opacity: 0;
}
}
@ -489,3 +498,9 @@
color: #df6c07;
animation: alert-flash 1s ease-in-out infinite;
}
.margTop {
padding: 10px;
margin-top: 10px;
background-color: #fff;
}