index.module.scss 1.58 KB
Newer Older
dechen lin's avatar
dechen lin committed
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93

$circle-width: 16px;

.container {
    position: relative;
    width:4 * $circle-width;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dot-pulse {
    position: relative;
    left: -9999px;
    width: $circle-width;
    height: $circle-width;
    border-radius: 50%;
    background-color: var(--color);
    color: var(--color);
    box-shadow: 9999px 0 0 -3px;
    animation: dot-pulse 1.5s infinite linear;
    animation-delay: 0.25s;
}

.dot-pulse::before,
.dot-pulse::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    width: $circle-width;
    height: $circle-width;
    border-radius: 50%;
    background-color: var(--color);
    color: var(--color);
}

.dot-pulse::before {
    box-shadow: 9974px 0 0 -3px;
    animation: dot-pulse-before 1.5s infinite linear;
    animation-delay: 0s;
}

.dot-pulse::after {
    box-shadow: 10024px 0 0 -3px;
    animation: dot-pulse-after 1.5s infinite linear;
    animation-delay: 0.5s;
}

@keyframes dot-pulse-before {
    0% {
        box-shadow: 9974px 0 0 -3px;
    }

    30% {
        box-shadow: 9974px 0 0 2px;
    }

    60%,
    100% {
        box-shadow: 9974px 0 0 -3px;
    }
}

@keyframes dot-pulse {
    0% {
        box-shadow: 9999px 0 0 -3px;
    }

    30% {
        box-shadow: 9999px 0 0 3px;
    }

    60%,
    100% {
        box-shadow: 9999px 0 0 -3px;
    }
}

@keyframes dot-pulse-after {
    0% {
        box-shadow: 10024px 0 0 -3px;
    }

    30% {
        box-shadow: 10024px 0 0 2px;
    }

    60%,
    100% {
        box-shadow: 10024px 0 0 -3px;
    }
}