suerprisePlus
2024-08-05 30e393df7b1d89c4172a7f4bec6e80e2dc00c373
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
<template>
    <div class="loading">
        <span></span> <span></span> <span></span> <span></span> <span></span>
    </div>
</template>
 
<script>
export default {
 
}
</script>
 
<style lang="scss" scoped>
.loading {
    width: 150px;
    height: 15px;
    margin: 10px auto;
 
    text-align: center;
}
 
.loading span {
    display: inline-block;
    width: 15px;
    height: 100%;
    margin-right: 5px;
    background: rgb(147, 151, 147);
    border-radius: 50%;
    ;
    -webkit-animation: load 1.04s ease infinite;
}
 
.loading span:last-child {
    margin-right: 0px;
}
 
@-webkit-keyframes load {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.2);
    }
 
    100% {
        opacity: .2;
        -webkit-transform: scale(.2);
    }
}
 
.loading span:nth-child(1) {
    -webkit-animation-delay: 0.13s;
}
 
.loading span:nth-child(2) {
    -webkit-animation-delay: 0.26s;
}
 
.loading span:nth-child(3) {
    -webkit-animation-delay: 0.39s;
}
 
.loading span:nth-child(4) {
    -webkit-animation-delay: 0.52s;
}
 
.loading span:nth-child(5) {
    -webkit-animation-delay: 0.65s;
}
</style>