yj
2024-12-05 ac3234c308e86f20cc63465573f321561ee00690
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
 
@charset "UTF-8";
.uni-load-more {
    display: flex;
    flex-direction: row;
    height: 80rpx;
    align-items: center;
    justify-content: center
}
.uni-load-more__text {
    font-size: 28rpx;
    color: #999
}
.uni-load-more__img {
    height: 24px;
    width: 24px;
    margin-right: 10px
}
.uni-load-more__img>view {
    position: absolute
}
.uni-load-more__img>view view {
    width: 6px;
    height: 2px;
    border-top-left-radius: 1px;
    border-bottom-left-radius: 1px;
    background: #999;
    position: absolute;
    opacity: .2;
    -webkit-transform-origin: 50%;
            transform-origin: 50%;
    -webkit-animation: load 1.56s ease infinite;
            animation: load 1.56s ease infinite
}
.uni-load-more__img>view view:nth-child(1) {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    top: 2px;
    left: 9px
}
.uni-load-more__img>view view:nth-child(2) {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    top: 11px;
    right: 0
}
.uni-load-more__img>view view:nth-child(3) {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
    bottom: 2px;
    left: 9px
}
.uni-load-more__img>view view:nth-child(4) {
    top: 11px;
    left: 0
}
.load1,
.load2,
.load3 {
    height: 24px;
    width: 24px
}
.load2 {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg)
}
.load3 {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg)
}
.load1 view:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s
}
.load2 view:nth-child(1) {
    -webkit-animation-delay: .13s;
            animation-delay: .13s
}
.load3 view:nth-child(1) {
    -webkit-animation-delay: .26s;
            animation-delay: .26s
}
.load1 view:nth-child(2) {
    -webkit-animation-delay: .39s;
            animation-delay: .39s
}
.load2 view:nth-child(2) {
    -webkit-animation-delay: .52s;
            animation-delay: .52s
}
.load3 view:nth-child(2) {
    -webkit-animation-delay: .65s;
            animation-delay: .65s
}
.load1 view:nth-child(3) {
    -webkit-animation-delay: .78s;
            animation-delay: .78s
}
.load2 view:nth-child(3) {
    -webkit-animation-delay: .91s;
            animation-delay: .91s
}
.load3 view:nth-child(3) {
    -webkit-animation-delay: 1.04s;
            animation-delay: 1.04s
}
.load1 view:nth-child(4) {
    -webkit-animation-delay: 1.17s;
            animation-delay: 1.17s
}
.load2 view:nth-child(4) {
    -webkit-animation-delay: 1.3s;
            animation-delay: 1.3s
}
.load3 view:nth-child(4) {
    -webkit-animation-delay: 1.43s;
            animation-delay: 1.43s
}
@-webkit-keyframes load {
0% {
        opacity: 1
}
100% {
        opacity: .2
}
}