minirefresh.theme.applet.css
1.69 KB
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
/**
* 微信小程序的主题
*/
.ball-beat > .dot {
opacity: 0.3;
background-color: #444;
width: 8px;
height: 8px;
border-radius: 100%;
margin: 2px;
display: inline-block;
}
.loading-applet .ball-beat .dot {
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation: ball-beat 1s 0s infinite linear;
animation: ball-beat 1s 0s infinite linear;
}
.loading-applet .ball-beat > .dot:nth-child(2) {
-webkit-animation-delay: 0.3s !important;
animation-delay: 0.3s !important;
}
.loading-applet .ball-beat > .dot:nth-child(3) {
-webkit-animation-delay: 0.6s !important;
animation-delay: 0.6s !important;
}
.minirefresh-theme-applet .minirefresh-downwrap {
position: absolute;
top: 0;
left: 0;
height: 50px;
}
.minirefresh-theme-applet .minirefresh-downwrap .downwrap-content {
width: 100%;
margin-top: 20px;
text-align: center;
}
@-moz-keyframes ball-beat {
50% {
opacity: 1;
-webkit-transform: scale(0.75);
transform: scale(0.75);
}
100% {
opacity: 0.3;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-webkit-keyframes ball-beat {
50% {
opacity: 1;
-webkit-transform: scale(0.75);
transform: scale(0.75);
}
100% {
opacity: 0.3;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-o-keyframes ball-beat {
50% {
opacity: 1;
-webkit-transform: scale(0.75);
transform: scale(0.75);
}
100% {
opacity: 0.3;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes ball-beat {
50% {
opacity: 1;
-webkit-transform: scale(0.75);
transform: scale(0.75);
}
100% {
opacity: 0.3;
-webkit-transform: scale(1);
transform: scale(1);
}
}