-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathjquery.mThumbnailScroller.css
278 lines (204 loc) · 7.45 KB
/
jquery.mThumbnailScroller.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*
== jquery thumbnail/image scroller ==
Plugin URI: http://manos.malihu.gr/jquery-thumbnail-scroller/
*/
/*
CONTENTS:
1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited).
2. SCROLLING BUTTONS STYLE - buttons size, background, color, positioning etc.
3. THUMBNAILS STYLE - basic thumbnails CSS.
4. THEMES - Scroller colors, dimensions, backgrounds etc. via ready-to-use themes.
*/
/*
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE
------------------------------------------------------------------------------------------------------------------------
*/
.mThumbnailScroller{ -ms-touch-action: none; touch-action: none; /* MSPointer events - direct all pointer events to js */ }
.mThumbnailScroller.mTS_no_scroll, .mThumbnailScroller.mTS_touch_action{ -ms-touch-action: auto; touch-action: auto; }
.mTSWrapper{
position: relative;
overflow: hidden;
height: 100%;
max-width: 100%;
outline: none;
direction: ltr;
}
.mTSContainer{
margin: 0;
padding: 0;
overflow: hidden;
}
ul.mTSContainer, ol.mTSContainer{ list-style: none; }
.mTSThumb,
ul.mTSContainer > li img{ vertical-align: bottom; }
.mTS_vertical .mTSContainer{
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.mTS_horizontal .mTSContainer{
margin-left: 0 !important;
margin-right: 0 !important;
}
/*
------------------------------------------------------------------------------------------------------------------------
2. SCROLLING BUTTONS STYLE
------------------------------------------------------------------------------------------------------------------------
*/
.mTSButton{
/* button size (if changed, also change the buttons top and left margins below) */
width: 20px;
height: 20px;
line-height: 20px;
padding: 14px;
/* ---------- */
overflow: hidden;
text-align: center;
background-color: #000; /* button background */
color: #fff; /* non-svg button icon color */
display: inline-block;
position: absolute;
top: 0;
left: 0;
/* show button effect (fades-in button from zero size) */
opacity: 1;
-webkit-transition: height 0s ease-out 0s, width 0s ease-out 0s, padding 0s ease-out 0s, opacity .2s ease-out 0s;
-moz-transition: height 0s ease-out 0s, width 0s ease-out 0s, padding 0s ease-out 0s, opacity .2s ease-out 0s;
-o-transition: height 0s ease-out 0s, width 0s ease-out 0s, padding 0s ease-out 0s, opacity .2s ease-out 0s;
-ms-transition: height 0s ease-out 0s, width 0s ease-out 0s, padding 0s ease-out 0s, opacity .2s ease-out 0s;
transition: height 0s ease-out 0s, width 0s ease-out 0s, padding 0s ease-out 0s, opacity .2s ease-out 0s;
/* ---------- */
}
/* buttons positioning */
.mTSButtonDown{
top: auto;
bottom: 0;
}
.mTSButtonRight{
left: auto;
right: 0;
}
.mTSButtonUp,
.mTSButtonDown{ /* margin is half the button size */
left: 50%;
margin-left: -24px;
}
.mTSButtonLeft,
.mTSButtonRight{ /* margin is half the button size */
top: 50%;
margin-top: -24px;
}
.mTSButtonIconContainer{
display: inline-block;
position: relative;
width: 100%;
padding-bottom: 100%;
overflow: hidden;
}
.mTSButtonIcon{ /* SVG icon */
display: inline-block;
fill: #fff; /* button icon color */
position: absolute;
top: 0;
left: 0;
}
.mTSButton.mTS-hidden,
.mThumbnailScroller.mTS_no_scroll .mTSButton{
/* hide button effect (fades-out button to zero size) */
opacity: 0;
height: 0;
width: 0;
padding: 0;
-webkit-transition: height 0s ease-out .2s, width 0s ease-out .2s, padding 0s ease-out .2s, opacity .2s ease-out;
-moz-transition: height 0s ease-out .2s, width 0s ease-out .2s, padding 0s ease-out .2s, opacity .2s ease-out;
-o-transition: height 0s ease-out .2s, width 0s ease-out .2s, padding 0s ease-out .2s, opacity .2s ease-out;
-ms-transition: height 0s ease-out .2s, width 0s ease-out .2s, padding 0s ease-out .2s, opacity .2s ease-out;
transition: height 0s ease-out .2s, width 0s ease-out .2s, padding 0s ease-out .2s, opacity .2s ease-out;
/* ---------- */
}
/*
------------------------------------------------------------------------------------------------------------------------
3. THUMBNAILS STYLE
------------------------------------------------------------------------------------------------------------------------
*/
/* thumbnail container (default: li) */
.mTS_horizontal .mTSThumbContainer,
.mTS_horizontal ul.mTSContainer > li{ float: left; }
/*
------------------------------------------------------------------------------------------------------------------------
4. THEMES
------------------------------------------------------------------------------------------------------------------------
*/
/* theme: "buttons-in" */
.mTS-buttons-in{
padding: 14px;
background-color: #000;
}
.mTS-buttons-in .mTSButtonIcon{ fill: #fff; }
.mTS-buttons-in .mTSWrapper,
.mTS-buttons-in .mTSButton{ background-color: inherit; }
.mTS-buttons-in .mTSButtonLeft,
.mTS-buttons-in .mTSButtonRight{
width: 24px;
height: 48px;
padding: 24px 4px 0 4px;
margin-top: -36px;
}
.mTS-buttons-in .mTSButtonUp,
.mTS-buttons-in .mTSButtonDown{
width: 24px;
height: 24px;
padding: 4px 24px;
margin-left: -36px;
}
.mTS-buttons-in .mTSButton.mTS-hidden{
height: 0;
width: 0;
padding: 0;
}
.mTS-buttons-in .mTSButton:not(.mTS-hidden){ opacity: .4; }
.mTS-buttons-in:hover .mTSButton:not(.mTS-hidden){ opacity: 1; }
.mTS-buttons-in .mTS_vertical .mTSThumbContainer{ margin: 14px 0; }
.mTS-buttons-in .mTS_vertical .mTSThumbContainer:first-child{ margin-top: 0; }
.mTS-buttons-in .mTS_vertical .mTSThumbContainer:last-child{ margin-bottom: 0; }
.mTS-buttons-in .mTS_horizontal .mTSThumbContainer{ margin: 0 7px; }
.mTS-buttons-in .mTS_horizontal .mTSThumbContainer:first-child{ margin-left: 0; }
.mTS-buttons-in .mTS_horizontal .mTSThumbContainer:last-child{ margin-right: 0; }
/* ---------------------------------------- */
/* theme: "buttons-out" */
.mTS-buttons-out{
padding: 6px;
background: #000;
}
.mTS-buttons-out .mTSButtonIcon{ fill: #000; }
.mTS-buttons-out .mTSButton{
background-color: transparent;
width: 36px;
height: 36px;
line-height: 42px;
padding: 6px;
}
.mTS-buttons-out .mTSButton.mTS-hidden{
height: 0;
width: 0;
padding: 0;
}
.mTS-buttons-out .mTS_vertical .mTSThumbContainer{ margin: 6px 0; }
.mTS-buttons-out .mTS_vertical .mTSThumbContainer:first-child{ margin-top: 0; }
.mTS-buttons-out .mTS_vertical .mTSThumbContainer:last-child{ margin-bottom: 0; }
.mTS-buttons-out .mTS_horizontal .mTSThumbContainer{ margin: 0 3px; }
.mTS-buttons-out .mTS_horizontal .mTSThumbContainer:first-child{ margin-left: 0; }
.mTS-buttons-out .mTS_horizontal .mTSThumbContainer:last-child{ margin-right: 0; }
/* ---------------------------------------- */
/* theme: "hover-full" */
.mTS-hover-full{
padding: 8px;
background: rgba(0,0,0,.2);
}
.mTS-hover-full .mTS_vertical .mTSThumbContainer{ margin: 8px 0; }
.mTS-hover-full .mTS_vertical .mTSThumbContainer:first-child{ margin-top: 40px; }
.mTS-hover-full .mTS_vertical .mTSThumbContainer:last-child{ margin-bottom: 40px; }
.mTS-hover-full .mTS_horizontal .mTSThumbContainer{ margin: 0 4px; }
.mTS-hover-full .mTS_horizontal .mTSThumbContainer:first-child{ margin-left: 40px; }
.mTS-hover-full .mTS_horizontal .mTSThumbContainer:last-child{ margin-right: 40px; }
/* ---------------------------------------- */