mask.les
2.1 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@import "../../../less/variables";
.progress_mask_wrap{
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0,0,0,.6);
z-index: 9000;
color: @white ;
}
.progress_wrap{
height: 180px;
width: 500px;
left: 50%;
top: 50%;
// margin-top: -90px;
// margin-left: -250px;
margin-top: -120px;
margin-left: -120px;
position: fixed;
font-size: 14px;
text-align: center;
}
.progress_title{
position: absolute;
left: 0;
right: 0;
bottom: 20px;
}
@keyframes lds-double-ring {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes lds-double-ring {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes lds-double-ring_reverse {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}
@-webkit-keyframes lds-double-ring_reverse {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}
.lds_double_ring {
position: relative;
}
.lds_double_ring div {
position: absolute;
width: 160px;
height: 160px;
top: 20px;
left: 20px;
border-radius: 50%;
border: 16px solid #000;
border-color: #45aee7 transparent #45aee7 transparent;
-webkit-animation: lds-double-ring 1.3s linear infinite;
animation: lds-double-ring 1.3s linear infinite;
}
.lds_double_ring div:nth-child(2) {
width: 124px;
height: 124px;
top: 38px;
left: 38px;
border-color: transparent #45aee7 transparent #45aee7;
-webkit-animation: lds-double-ring_reverse 1.3s linear infinite;
animation: lds-double-ring_reverse 1.3s linear infinite;
}
.lds_double_ring {
width: 240px !important;
height: 240px !important;
-webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}