no message

This commit is contained in:
DESKTOP-RQ919RC\Pc 2025-04-01 11:45:20 +08:00
parent 492451e255
commit ce7bc986af
2 changed files with 20 additions and 0 deletions

View File

@ -8,9 +8,19 @@
display: flex;
justify-content: center;
align-items: center;
/* 定义一个名为 rotate 的动画,让元素从 0 度旋转到 360 度 */
}
.loading-mask .loading-icon {
width: 50px;
animation: loadingRotate 2s linear infinite;
}
@keyframes loadingRotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.boxbox {
width: 1200px;

View File

@ -10,6 +10,16 @@
align-items: center;
.loading-icon {
width: 50px;
animation: loadingRotate 2s linear infinite;
}
/* 定义一个名为 rotate 的动画,让元素从 0 度旋转到 360 度 */
@keyframes loadingRotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
}
.boxbox {