{"Message":"1","MessageType":2,"Modules":[{"State":1,"Type":7,"Name":"Table/项目表"},{"State":1,"Type":1,"Name":"PCPage/任务列表"},{"State":1,"Type":1,"Name":"PCPage/汇报详情"},{"State":1,"Type":12,"Name":"CustomLibrary"},{"State":1,"Type":15,"Name":"ServerCommand/AI内容转报工数据"},{"State":1,"Type":15,"Name":"ServerCommand/AI报工数据转日报"},{"State":3,"Type":1,"Name":"PCPage/AI任务助手"}],"Version":"v1"}
This commit is contained in:
@@ -142,4 +142,29 @@
|
||||
white-space: normal !important;
|
||||
padding: 0 !important;
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
/* 定义旋转动画 */
|
||||
@keyframes rotate-and-fade {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
opacity: 1;
|
||||
}
|
||||
25% {
|
||||
transform: rotate(90deg);
|
||||
opacity: 0.6;
|
||||
}
|
||||
50% {
|
||||
transform: rotate(180deg);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
|
||||
/* 应用动画的CSS类 */
|
||||
.rotate-slow {
|
||||
animation: rotate-and-fade 10s linear infinite; /* 持续时间10秒,线性速率,无限循环 */
|
||||
}
|
||||
Reference in New Issue
Block a user