-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading2.css
More file actions
58 lines (57 loc) · 883 Bytes
/
Copy pathloading2.css
File metadata and controls
58 lines (57 loc) · 883 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
58
body{
margin : 0;
padding : 0;
background: #333;
}
.middle {
position : absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
}
.bar {
width : 9px;
height: 60px;
background: white;
display:inline-block;
transform-origin:bottom center;
animation: loading 1.5s ease-in-out infinite;
}
.bar1{
animation-delay: 0.1s;
}
.bar2{
animation-delay: 0.2s;
}
.bar3{
animation-delay: 0.3s;
}
.bar4{
animation-delay: 0.4s;
}
.bar5{
animation-delay: 0.5s;
}
.bar6{
animation-delay: 0.6s;
}
.bar7{
animation-delay: 0.7s;
}
.bar8{
animation-delay: 0.8s;
}
@keyframes loading {
0%{
transform: scaleY(0.1);
background: #fff;
}
50%{
transform: scaleY(1);
background: #2ecc71;
}
100%{
transform: scaleY(0.1);
background: transparent;
}
}