-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathslider.js
402 lines (314 loc) · 9.86 KB
/
slider.js
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
/**
* A simple JavaScript library, to display a content slider
*
* @author Matthias Thalmann (https://github.com/m-thalmann/)
* @license MIT
*/
var Slider = (function(){
var delay = 5; //seconds
var sliders = [];
const DEFAULT_ICONS = {
pause: "<span>▶</span>",
play: "<span>⏸</span>",
next: "<span>></span>",
prev: "<span><</span>"
};
function getProperty(options, opt, def){
if(typeof options[opt] === "undefined"){
return def;
}else{
return options[opt];
}
}
function Slider(container, options){
var self = this;
if(typeof container === "undefined"){
throw new Error("Parameter 1 must be set");
}
if(typeof container === "string"){
container = document.getElementById(container);
if(typeof container === "undefined"){
throw new Error("The container was not found");
}
}else if(!(container instanceof Node)){
throw new Error("Parameter 1 must be either string or DOM-Node");
}
if(typeof options === "undefined"){
options = {};
}else if(typeof options !== "object"){
throw new Error("Parameter 2 must be object");
}
this.container = container;
this.slides = [];
var timeout = null;
var current = -1;
var controls = {};
this.prev = function(amount){
if(typeof amount === "undefined"){
amount = 1;
}
if(amount <= 0){
return;
}
var pos = current - amount;
if(pos < 0){
pos = this.slides.length - 1;
}
getProperty(options.events, "prev", function(){})();
self.showSlide(pos);
};
this.next = function(amount){
if(typeof amount === "undefined"){
amount = 1;
}
if(amount <= 0){
return;
}
var pos = current + amount;
if(pos >= this.slides.length){
pos = 0;
}
getProperty(options.events, "next", function(){})();
self.showSlide(pos);
};
this.showSlide = function(num){
if(typeof num === "undefined"){
num = 0;
}
if(this.slides[num]){
if(options.playing){
self.resetTimeout();
}
getProperty(options.events, "change_slide", function(){})(num, this.slides[num]);
current = num;
for(var i = 0; i < this.slides.length; i++){
this.slides[i].classList.remove("active");
if(controls.indicators_list){
controls.indicators_list[i].classList.remove("active");
}
}
this.slides[num].classList.add("active");
if (controls.indicators_list) {
controls.indicators_list[num].classList.add("active");
}
if(controls.slides_container){
controls.slides_container.style.left = "-" + (100 * parseInt(num)) + "%";
}
if(controls.indicator_select){
controls.indicator_select.selectedIndex = num;
}
}
};
this.pause = function(){
if(timeout){
clearTimeout(timeout);
timeout = null;
}
options.playing = false;
if(controls.pause){
controls.pause.innerHTML = getProperty(options, "play_icon", DEFAULT_ICONS.pause);
}
getProperty(options.events, "pause", function(){})();
}
this.play = function(){
self.resetTimeout();
options.playing = true;
if(controls.pause){
controls.pause.innerHTML = getProperty(options, "pause_icon", DEFAULT_ICONS.play);
}
getProperty(options.events, "play", function(){})();
}
this.togglePlay = function(){
if(timeout){
self.pause();
}else{
self.play();
}
getProperty(options.events, "toggle_play", function(){})();
}
this.isPlaying = function(){
return !!timeout;
};
this.resetTimeout = function(){
if(timeout){
clearTimeout(timeout);
}
timeout = setTimeout(function () {
if(getProperty(options, "play_direction", Slider.FORWARDS) == Slider.BACKWARDS){
self.prev();
}else{
self.next();
}
}, delay * 1000);
};
this.showUI = function(level){
if(level instanceof Array){
controls.prev.classList.add("hidden");
controls.next.classList.add("hidden");
controls.pause.classList.add("hidden");
controls.indicators.classList.add("hidden");
for(var i = 0; i < level.length; i++){
switch(level[i]){
case Slider.UI.PREV:{
controls.prev.classList.remove("hidden");
break;
}
case Slider.UI.NEXT:{
controls.next.classList.remove("hidden");
break;
}
case Slider.UI.PAUSE:{
controls.pause.classList.remove("hidden");
break;
}
case Slider.UI.INDICATORS:{
controls.indicators.classList.remove("hidden");
break;
}
}
}
}else if(typeof level === "number"){
self.showUI([level]);
}else if(typeof level === "boolean"){
if(level){
self.showUI([Slider.UI.PREV, Slider.UI.NEXT, Slider.UI.PAUSE, Slider.UI.INDICATORS]);
}else{
self.showUI([]);
}
}else{
self.showUI(true);
}
};
this.updateView = function(){
container.innerHTML = "";
var cnt_slides = document.createElement("div");
cnt_slides.className = "slides";
for(var i = 0; i < self.slides.length; i++){
cnt_slides.appendChild(self.slides[i]);
}
controls.slides_container = cnt_slides;
container.appendChild(cnt_slides);
var btn_prev = document.createElement("div");
btn_prev.className = "slider_btn_nav slider_btn_prev slider_controls";
btn_prev.innerHTML = getProperty(options, "prev_icon", DEFAULT_ICONS.prev);
btn_prev.addEventListener("click", function () {
self.prev();
});
controls.prev = btn_prev;
var btn_next = document.createElement("div");
btn_next.className = "slider_btn_nav slider_btn_next slider_controls";
btn_next.innerHTML = getProperty(options, "next_icon", DEFAULT_ICONS.next);
btn_next.addEventListener("click", function () {
self.next();
});
controls.next = btn_next;
var btn_pause = document.createElement("div");
btn_pause.className = "slider_btn_pause slider_controls";
btn_pause.addEventListener("click", function () {
self.togglePlay();
});
controls.pause = btn_pause;
var cnt_indicators = document.createElement("div");
cnt_indicators.className = "slider_indicators slider_controls";
controls.indicators = cnt_indicators;
controls.indicators_list = [];
var select_indicator = document.createElement("select");
select_indicator.className = "slider_indicator_select";
select_indicator.onchange = function(){
self.showSlide(this.value);
};
var indicator_icon = getProperty(options, "indicator_icon", "");
for (var i = 0; i < self.slides.length; i++) {
(function (i_tmp) {
var indicator = document.createElement("div");
indicator.className = "slider_indicator";
if (indicator_icon != "") {
indicator.innerHTML = indicator_icon;
} else {
indicator.classList.add("slider_indicator_icon");
}
indicator.addEventListener("click", function () {
self.showSlide(i_tmp);
});
controls.indicators_list.push(indicator);
cnt_indicators.appendChild(indicator);
var option_indicator = document.createElement("option");
option_indicator.value = i_tmp;
option_indicator.innerHTML = (i_tmp + 1);
if(current == -1 && i_tmp == 0){
option_indicator.selected = "true";
}else if(current == i_tmp){
option_indicator.selected = "true";
}
select_indicator.appendChild(option_indicator);
}(i));
}
controls.indicator_select = select_indicator;
container.appendChild(btn_prev);
container.appendChild(btn_next);
container.appendChild(btn_pause);
container.appendChild(cnt_indicators);
container.appendChild(select_indicator);
if(current == -1){
self.showSlide(getProperty(options, "start_slide", 0));
}else{
self.showSlide(current);
}
options.playing = getProperty(options, "playing", true);
if(options.playing){
self.play();
}else{
self.pause();
}
// Load images
var imgs = cnt_slides.getElementsByTagName('img');
for(var i = 0; i < imgs.length; i++){
if(imgs[i].getAttribute("data-src-async")){
imgs[i].src = imgs[i].getAttribute("data-src-async");
}
}
};
// Init
(function(){
var slds = container.getElementsByClassName('slide');
for(var i = 0; i < slds.length; i++){
self.slides.push(slds[i]);
}
container.classList.add("slider");
if(typeof options.events !== "object"){
options.events = {};
}
self.updateView();
if(!getProperty(options, "show_ui", true)){
self.showUI(false);
}
getProperty(options.events, "load", function(){})(controls.slides_container);
}());
sliders.push(this);
}
Slider.setDelay = function(_delay){
if(typeof _delay === "number"){
delay = _delay;
for(var i = 0; i < sliders.length; i++){
sliders[i].resetTimeout();
}
}else{
console.warn("Parameter 1 must be a number");
}
};
Slider.getDelay = function(){
return delay;
}
Slider.FORWARDS = "play_direction_next";
Slider.BACKWARDS = "play_direction_prev";
Slider.UI = {
PREV: 0,
NEXT: 1,
PAUSE: 2,
INDICATORS: 3,
};
return Slider;
}());
/*
IDEA: Integration with pan event
*/