minirefresh.theme.taobao.css
2.07 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
/**
* 仿淘宝的主题
* 支持淘宝二楼效果
*/
.minirefresh-theme-taobao .minirefresh-downwrap {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 800px;
/**
* 以下是进入和退出秘密花园
*/
}
.minirefresh-theme-taobao .minirefresh-downwrap .downwrap-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("images/taobao-bg.jpg");
background-size: 100% 100%;
}
.minirefresh-theme-taobao .minirefresh-downwrap .downwrap-moon {
position: absolute;
width: 120px;
height: 80px;
bottom: 80px;
margin-left: -60px;
left: 50%;
background-image: url("images/taobao-moon.png");
background-size: 100% 100%;
}
.minirefresh-theme-taobao .minirefresh-downwrap .downwrap-content {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
}
.minirefresh-theme-taobao .minirefresh-downwrap .secret-garden-bg-in {
transform: scale(1.5) translateZ(0px);
-webkit-transform: scale(1.5) translateZ(0px);
transition: 1000ms;
-webkit-transition: 1000ms;
}
.minirefresh-theme-taobao .minirefresh-downwrap .secret-garden-bg-out {
transform: scale(1) translateZ(0px);
-webkit-transform: scale(1) translateZ(0px);
transition: 1000ms;
-webkit-transition: 1000ms;
}
.minirefresh-theme-taobao .minirefresh-downwrap .secret-garden-moon-in {
transform: translateY(-120px) translateZ(0px);
-webkit-transform: translateY(-120px) translateZ(0px);
transition: 1000ms;
-webkit-transition: 1000ms;
}
.minirefresh-theme-taobao .minirefresh-downwrap .secret-garden-moon-out {
transform: translateY(0px) translateZ(0px);
-webkit-transform: translateY(0px) translateZ(0px);
transition: 1000ms;
-webkit-transition: 1000ms;
}
.minirefresh-theme-taobao .minirefresh-downwrap .downwrap-tips {
font-size: 14px;
color: #fff;
}
.minirefresh-theme-taobao .minirefresh-downwrap .downwrap-progress {
display: inline-block;
width: 16px;
height: 16px;
border-radius: 50%;
border: 1px solid #fff;
margin-right: 8px;
border-bottom-color: transparent;
vertical-align: middle;
}