tanghaolin
7 天以前 9bee4f48db0c5b99b5683545fac737856d94d082
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
.loader-div {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 100%;
    height: 100%;
 
    .loader-next {
        --color: #a5a5b0;
        --size: 70px;
        width: var(--size);
        height: var(--size);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
 
    .loader-next span {
        width: 100%;
        height: 100%;
        background-color: var(--color);
        animation: keyframes-blink 0.6s alternate infinite linear;
    }
 
    .loader-next span:nth-child(1) {
        animation-delay: 0ms;
    }
 
    .loader-next span:nth-child(2) {
        animation-delay: 200ms;
    }
 
    .loader-next span:nth-child(3) {
        animation-delay: 300ms;
    }
 
    .loader-next span:nth-child(4) {
        animation-delay: 400ms;
    }
 
    .loader-next span:nth-child(5) {
        animation-delay: 500ms;
    }
 
    .loader-next span:nth-child(6) {
        animation-delay: 600ms;
    }
 
    @keyframes keyframes-blink {
        0% {
            opacity: 0.3;
            transform: scale(0.5) rotate(5deg);
        }
 
        50% {
            opacity: 1;
            transform: scale(1);
        }
    }
}