blob: 4e7f3ee8c24216f116f6e9649c324e2395201839 (
plain)
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
|
.spinner {
height: 18px;
display: inline-block;
}
.spinner > div {
width: 18px;
height: 18px;
background-color: #000;
vertical-align: middle;
border-radius: 100%;
display: inline-block;
animation: bouncedelay 1.5s infinite ease-in-out;
animation-fill-mode: both;
}
.spinner .spin1 { animation-delay: -.46s }
.spinner .spin2 { animation-delay: -.24s }
@keyframes bouncedelay {
0%, 80%, 100% {
transform: scale(0.5);
} 40% {
transform: scale(0.9);
}
}
|