1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**Variable**/
/*加载中*/
.plx-table--loading {
display: none;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 99;
user-select: none;
background-color: $vxe-loading-background-color;
.plx-table--spinner {
width: 56px;
height: 56px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
&:before,
&:after {
content: "";
width: 100%;
height: 100%;
border-radius: 50%;
background-color: $vxe-primary-color;
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
animation: bounce 2.0s infinite ease-in-out;
}
&:after {
animation-delay: -1.0s;
}
}
@keyframes bounce {
0%, 100% {
transform: scale(0);
} 50% {
transform: scale(1);
}
}
}