313ce84a
songchongxian
创建h5 app项目
|
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
|
@charset "utf-8";
/*
//author wallace 华dee
//2015 7 3
//qq447363121陈国华
*/
#wrapper {
position: absolute;
z-index: 1;
height: 100%;
width: 100%;
}
#scroller {
position: absolute;
z-index: 1;
/* -webkit-touch-callout:none;*/
-webkit-tap-highlight-color: rgba(0,0,0,0);
width: 100%;
padding: 0;
}
#scroller ul {
list-style: none;
padding: 0;
margin: 0;
width: 100%;
text-align: left;
}
#scroller li {
padding: 0 10px;
height: 40px;
line-height: 40px;
border-bottom: 1px solid #ccc;
border-top: 1px solid #fff;
background-color: #fafafa;
font-size: 14px;
}
#pullDown, #pullUp {
text-align: center;
height: 40px;
line-height: 40px;
font-size: 12px;
color: #888;
font-family: Arial, Microsoft YaHei;
} #pullUp{ display:block;}
.loader {
display: inline-block;
font-size: 0px;
padding: 0px;
display: none;
}
.loader span {
vertical-align: middle;
border-radius: 100%;
display: inline-block;
width: 10px;
height: 10px;
margin: 0 2px;
-webkit-animation: loader 0.8s linear infinite alternate;
animation: loader 0.8s linear infinite alternate;
}
.loader span:nth-child(1) {
-webkit-animation-delay: -1s;
animation-delay: -1s;
background: rgba(245, 103, 115,0.6);
}
.loader span:nth-child(2) {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
background: rgba(245, 103, 115,0.8);
}
.loader span:nth-child(3) {
-webkit-animation-delay: -0.26666s;
animation-delay: -0.26666s;
background: rgba(245, 103, 115,1);
}
.loader span:nth-child(4) {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
background: rgba(245, 103, 115,0.8);
}
.loader span:nth-child(5) {
-webkit-animation-delay: -1s;
animation-delay: -1s;
background: rgba(245, 103, 115,0.4);
}
@keyframes loader {
from {
transform: scale(0, 0);
}
to {
transform: scale(1, 1);
}
}
@-webkit-keyframes loader {
from {
-webkit-transform: scale(0, 0);
}
to {
-webkit-transform: scale(1, 1);
}
}
|