邓洁: echarts的loading

This commit is contained in:
邓洁
2024-01-03 14:50:59 +08:00
parent 073ec5c570
commit 2d1d42f83a
6 changed files with 88 additions and 14 deletions

View File

@@ -679,3 +679,34 @@ input[type="number"] {
align-items: center;
color: #2fb0df;
}
//loading
.loading-block{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height:900px;
font-size: 55px;
color: #38CAFB;
letter-spacing: 3px;
.loading {
margin-bottom: 20px;
width: 100px;
height: 100px;
border: 2px solid #38CAFB;
border-top-color: transparent;
border-radius: 100%;
animation: circle infinite 0.75s linear;
}
}
// 转转转动画
@keyframes circle {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}