swpier.css
1.9 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
@media screen and (min-device-width: 1366px), screen and (min-device-width: 1366px), screen and (min-device-width: 1366px), screen and (min-device-width: 1366px) {
#arrow_right_height, #arrow_left_height {
background-image: url(../images/ui_2x2761ce.png);
background-size: 738.1% 284.0%;
background-position: 0 97%;
}
}
#pageControl {
position: fixed;
width: 198px;
height: 10px;
bottom: 5%;
left: 50%;
z-index: 1500;
margin-left: -75px;
}
.pageControl {
float: left;
width: 10px;
height: 10px;
border-radius: 5px;
background-color: white;
opacity: 0.4;
margin-left: 20px;
cursor: pointer;
transition: all 0.3s;
}
.activeControl{
opacity: 1;
transform: scale(1.2, 1.2);
}
.pageControl:first-child {
margin-left: 0;
}
#arrow_right {
position: fixed;
z-index: 1000;
width: 2%;
height: 12%;
right: 2.5%;
max-width: 33px;
max-height: 64px;
top: 50%;
margin-top: -3.3%;
cursor: pointer;
}
#arrow_right_height, #arrow_left_height {
background-image: url(../images/ui_2x2761ce.png);
background-size: 738.1% 284.0%;
background-position: 0 97%;
width: 100%;
height: 100%;
}
#arrow_left {
position: fixed;
z-index: 1000;
width: 2%;
height: 12%;
left: 2.5%;
max-width: 33px;
max-height: 64px;
top: 50%;
margin-top: -3.3%;
cursor: pointer;
-webkit-transform: scaleX(-1);
-ms-transform: scaleX(-1);
transform: scaleX(-1);
}
.animateBaseIn {
-webkit-animation: animateBaseIn 0.6s;
animation: animateBaseIn 0.6s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.animateBaseOut {
-webkit-animation: animateBaseOut 0.4s;
animation: animateBaseOut 0.4s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
@keyframes animateBaseIn {
0%{
opacity: 0;
}
90%{
opacity: 1;
}
100%{
opacity: 1;
}
}
@keyframes animateBaseOut {
0%{
opacity: 1;
}
90%{
opacity: 0;
}
100%{
opacity: 0;
}
}