-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading3.css
More file actions
57 lines (54 loc) · 844 Bytes
/
Copy pathloading3.css
File metadata and controls
57 lines (54 loc) · 844 Bytes
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
body{
margin:0;
padding : 0;
background: #2980b9;
}
.loading{
position: absolute;
top: 50%;
left : 50%;
transform: translate(-50%,-50%);
height: 40px;
display: flex;
align-items : center;
}
.obj{
width : 6px;
height : 40px;
background: white;
margin : 0 3px;
border-radius: 10px;
animation: loading 0.8s infinite
}
.obj:nth-child(2){
animation-delay : 0.1s
}
.obj:nth-child(3){
animation-delay : 0.2s
}
.obj:nth-child(4){
animation-delay : 0.3s
}
.obj:nth-child(5){
animation-delay : 0.4s
}
.obj:nth-child(6){
animation-delay : 0.5s
}
.obj:nth-child(7){
animation-delay : 0.6s
}
.obj:nth-child(8){
animation-delay : 0.7s
}
@keyframes loading{
0%{
height: 0;
}
50%{
height: 40px;
}
100%{
height: 0;
}
}