Slide_wev8.css
2.17 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
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
/* Swipe 2 required styles */
.swipe {
overflow: hidden;
visibility: hidden;
position: relative;
}
.swipe-wrap {
overflow: hidden;
position: relative;
}
.swipe-wrap > div {
float:left;
width:100%;
position: relative;
}
.swipe-wrap .slide-overlay{
background-color: rgba(0,0,0,1);
}
@keyframes loading {
0.1% {
-webkit-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1);
} 50% {
-webkit-transform: rotate(180deg) scale(1);transform: rotate(180deg) scale(1);
} 100% {
-webkit-transform: rotate(360deg) scale(1); transform: rotate(360deg) scale(1);
}
}
@-webkit-keyframes loading {
0.1% {
-webkit-transform: rotate(0deg) scale(1);
} 50% {
-webkit-transform: rotate(180deg) scale(1);
} 100% {
-webkit-transform: rotate(360deg) scale(1);
}
}
.swipe-wrap .slide-overlay .circle{
position:absolute;
top:10px;
left:10px;
right:10px;
bottom:10px;
background-color: #fff;
border-radius: 100%;
margin: auto;
border: 2px solid #fff;
border-bottom-color: transparent;
height: 35px;
width: 35px;
background: transparent !important;
-webkit-animation: loading 0.75s 0.01s infinite linear;
animation: loading 0.75s 0.01s infinite linear;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
z-index:999;
}
.swipe-wrap .slide-overlay{
position: absolute;
left: 0px;
bottom: 0px;
width:100%;
height:100%;
}
/* END required styles */
.slide .swipe-wrap{
margin: 0px;
padding: 0px;
height: 100%;
}
.slide .swipe-wrap > div {
margin: 0px;
padding: 0px;
height: 100%;
}
.slide img.pic{
width: 100%;
height: 100%;
}
.slide .desc{
position: absolute;
left: 0px;
bottom: 0px;
color: #fff;
font-family: 'Microsoft Yahei', Arial, sans-serif;
font-size: 12px;
padding: 10px 10px;
}
.slide .slide-point{
position: absolute;
right: 10px;
bottom: 8px;
}
.slide .slide-point b{
background-color: #fff;
border-radius: 3px;
display: inline-block;
height: 5px;
margin-right: 2px;
width: 5px;
}
.slide .slide-point b:last-child{
margin-right: 0px;
}
.slide .slide-point b.currPoint{
background-color: #007AFB;
}
.slideWarn{
font-size: 16px;
color: #999;
padding: 5px;
text-align: center;
}