no message
This commit is contained in:
parent
492451e255
commit
ce7bc986af
@ -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;
|
||||
|
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user