-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjcarousel.css
executable file
·136 lines (112 loc) · 3.2 KB
/
jcarousel.css
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/****************************************
Horizontal *****************************/
.jcarousel-container {
background: #fff;
border: none;
width: 550px;
margin: -5px 0 20px 0;
}
.jcarousel-clip {
width: 550px;
height: 99px;
padding:0 2px;
}
.jcarousel-list {
width: 550px;
height: 99px;
}
.jcarousel-list li {
width: 79px;
height: 79px;
margin-right: 15px;
padding:10px 0;
background: #fff url(images/loading.gif) 50% 50% no-repeat;
border:none;
}
.jcarousel-item-placeholder {
background: #fff url(images/loading.gif) 50% 50% no-repeat;
}
.jcarousel-item img{border:1px solid transparent;}
img.activecarouselimage{
-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;border:1px solid #000;
}
/**
* Horizontal Buttons
*/
.jcarousel-prev-horizontal,.jcarousel-next-horizontal {display: block; width: 32px; height: 53px; position: absolute; top: 23px !important; opacity: 0.2; z-index: 99 !important;}
.jcarousel-prev-horizontal {background: #000 url(images/larr.png) 8px 50% no-repeat; left: 3px !important;}
.jcarousel-next-horizontal {background: #000 url(images/rarr.png) 11px 50% no-repeat; right: 0px !important;}
.jcarousel-prev-horizontal:hover, .jcarousel-next-horizontal:hover {opacity: 0.6;cursor:pointer;}
.jcarousel-prev-disabled-horizontal,.jcarousel-next-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
cursor: default;
background-position: -96px 0;display:none;background:none;visibility:none;
}
/****************************************
Vertical *****************************/
.jcarousel-container-vertical {
width: 75px;
height: 245px;
padding: 40px 20px;
float: left;
}
.jcarousel-clip-vertical {
width: 65px;
height: 245px;
}
.jcarousel-item-vertical {
margin-bottom: 10px;
}
.jcarousel-item {
width: 75px;
height: 75px;
}
.jcarousel-skin-tango .jcarousel-item-vertical {
margin-bottom: 10px;
}
/**
* Vertical Buttons
*/
.jcarousel-next-vertical {
position: absolute;
bottom: 5px;
left: 43px;
width: 32px;
height: 32px;
cursor: pointer;
background: transparent url(images/jcarousel_next_vertical.png) no-repeat 0 0;
}
.jcarousel-next-vertical:hover {
background-position: 0 -32px;
}
.jcarousel-next-vertical:active {
background-position: 0 -64px;
}
.jcarousel-next-disabled-vertical,
.jcarousel-next-disabled-vertical:hover,
.jcarousel-next-disabled-vertical:active {
cursor: default;
background-position: 0 -96px;
}
.jcarousel-prev-vertical {
position: absolute;
top: 5px;
left: 43px;
width: 32px;
height: 32px;
cursor: pointer;
background: transparent url(images/jcarousel_prev_vertical.png) no-repeat 0 0;
}
.jcarousel-prev-vertical:hover {
background-position: 0 -32px;
}
.jcarousel-prev-vertical:active {
background-position: 0 -64px;
}
.jcarousel-prev-disabled-vertical,
.jcarousel-prev-disabled-vertical:hover,
.jcarousel-prev-disabled-vertical:active {
cursor: default;
background-position: 0 -96px;
}