spinner.n2less
1.42 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
(~'div@{id}') {
.nextend-spinnerhidden {
position: absolute;
left: -10000px;
}
.nextend-spinner {
position: absolute;
top: 50%;
left: 50%;
margin: -25px 0 0 -15px;
z-index: 1000;
width: 50px;
height: 30px;
text-align: center;
font-size: 10px;
background-color: RGBA(0, 0, 0, 0.6);
border-radius: 3px;
padding: 10px 15px;
}
.nextend-spinner > div {
background-color: #f6f6f6;
height: 100%;
width: 6px;
display: inline-block;
-webkit-animation: nextendstretchdelay 1.2s infinite ease-in-out;
animation: nextendstretchdelay 1.2s infinite ease-in-out;
}
.nextend-spinner .rect2 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.nextend-spinner .rect3 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
.nextend-spinner .rect4 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.nextend-spinner .rect5 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
}
@-webkit-keyframes nextendstretchdelay {
0%, 40%, 100% {
-webkit-transform: scaleY(0.4)
}
20% {
-webkit-transform: scaleY(1.0)
}
}
@keyframes nextendstretchdelay {
0%, 40%, 100% {
transform: scaleY(0.4);
-webkit-transform: scaleY(0.4);
}
20% {
transform: scaleY(1.0);
-webkit-transform: scaleY(1.0);
}
}