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
| .spin-animation path {
| animation: custom 2s linear infinite;
| }
|
| @keyframes custom {
| 0% {
| opacity: 0;
| }
|
| 25% {
| opacity: 0.1;
| }
|
| 50% {
| opacity: 0.2;
| }
|
| 75% {
| opacity: 0.5;
| }
|
| 100% {
| opacity: 1;
| }
| }
|
| .spin-animation path:nth-child(1) {
| animation-delay: 0s;
| }
|
| .spin-animation path:nth-child(2) {
| animation-delay: 0.5s;
| }
|
| .spin-animation path:nth-child(3) {
| animation-delay: 1s;
| }
|
| .spin-animation path:nth-child(4) {
| animation-delay: 2s;
| }
|
|