-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarousel.js
411 lines (362 loc) · 12.5 KB
/
carousel.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
403
404
405
406
407
408
409
410
411
// Carousel
// Author: Nick Stark
(function(win) {
// http://paulirish.com/2011/requestanimationframe-for-smart-animating/
// requestAnimationFrame polyfill by Erik Möller
// fixes from Paul Irish and Tino Zijdel
var lastTime = 0;
var vendors = ['ms', 'moz', 'webkit', 'o'];
for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {
window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame'];
window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame'] || window[vendors[x]+'CancelRequestAnimationFrame'];
}
if (!window.requestAnimationFrame) {
window.requestAnimationFrame = function(callback, element) {
var currTime = new Date().getTime();
var timeToCall = Math.max(0, 16 - (currTime - lastTime));
var id = window.setTimeout(function() { callback(currTime + timeToCall); },
timeToCall);
lastTime = currTime + timeToCall;
return id;
};
}
if (!window.cancelAnimationFrame) {
window.cancelAnimationFrame = function(id) {
clearTimeout(id);
};
}
}());
(function($, win) {
'use strict';
/**
* Constructor for carousel object
*
* @param {DOMElement} el Slide container
*/
var Carousel = function(el, options) {
this.$container = $(el);
this.$el = this.$container.wrap('<div>').parent().addClass('carousel-wrap');
this.$slides = this.$container.children();
this.size = this.$slides.length;
this.currentIndex = 0;
this.targetIndex = 0;
this.settings = $.extend({
speed: 600,
swipeThreshold: 20,
pagination: false,
controls: true,
touch: true
}, options);
this.transitioning = false;
this.pageX = 0;
this.currentOffset = 0;
this._setSize();
this._detectSupport();
if (this.settings.controls) {
this._initControls();
}
if (this.settings.pagination) {
this._initPagination();
}
this._update();
this._bind();
this.onWindowResize(); // get initial settings
};
/**
* Initialize container size
*/
Carousel.prototype._setSize = function() {
this.$container.css('width', (this.size * 100) + '%');
this.$slides.css('width', (100 / this.size) + '%');
};
/**
* Detect CSS Transition support
*/
Carousel.prototype._detectSupport = function() {
var self = this;
this.supportsTransition = (function() {
var div = document.createElement('div');
var style = div.style;
var prop = 'Transition';
return prop in style || 'Moz' + prop in style || 'Webkit' + prop in style;
}());
this.transitionEvent = 'transitionend webkitTransitionEnd';
};
/**
* Add Prev/Next controls
*/
Carousel.prototype._initControls = function() {
var $controls = $('<div class="carousel-controls"></div>');
$controls
.append('<a href="#" class="carousel-control carousel-prev">Prev</a>')
.append('<a href="#" class="carousel-control carousel-next">Next</a>');
this.$controls = $controls.appendTo(this.$el);
};
/**
* Add Pagination
*/
Carousel.prototype._initPagination = function() {
var $pagination = $('<ul class="carousel-pagination"></ul>');
this.$slides.each(function(index, el) {
$pagination.append('<li><a href="#">' + (index + 1) + '</a></li>');
});
this.$pagination = $pagination.appendTo(this.$el);
};
/**
* Bind events to carousel
*/
Carousel.prototype._bind = function() {
var self = this;
if (self.settings.controls) {
self.$controls.on('click', '.carousel-control', function(e) {
e.preventDefault();
var $control = $(this);
if ($control.hasClass('is-disabled')) {
return;
}
if ($control.hasClass('carousel-prev')) {
self.prev();
} else {
self.next();
}
});
}
if (self.settings.pagination) {
self.$pagination.on('click', 'a', function(e) {
e.preventDefault();
var index = $(this).parent().index();
self.goToSlide(index);
});
}
if (typeof TouchEvent !== "undefined") {
self.$container.on('touchstart', $.proxy(self.onTouchStart, self));
self.$container.on('touchmove', $.proxy(self.onTouchMove, self));
self.$container.on('touchend touchcancel', $.proxy(self.onTouchEnd, self));
}
self.$el.on('keydown', $.proxy(self.onKeyPress, self));
$(win).on('resize', $.proxy(self.onWindowResize, self));
};
/**
* Updates
*
* @param {string} param Parameter Description
* @returns {boolean}
*/
Carousel.prototype._update = function() {
var index = this.currentIndex;
var controls;
// update slides
this.$slides.removeClass('is-current').eq(index).addClass('is-current');
// update disabled state
if (this.settings.controls) {
controls = this.$controls.children().removeClass('is-disabled');
if (index === 0) {
controls.filter('.carousel-prev').addClass('is-disabled');
} else if (index === this.size - 1) {
controls.filter('.carousel-next').addClass('is-disabled');
}
}
// update pagination
if (this.settings.pagination) {
this.$pagination.children().removeClass('is-current').eq(index).addClass('is-current');
}
};
/**
* Resize even handler
*
* @param {string} param Parameter Description
* @returns {boolean}
*/
Carousel.prototype.onWindowResize = function() {
this.slideWidth = this.$el.width();
};
/**
* Convert pixel length to percentage
*
* @param {int} px Pixel value to be converted
* @returns {int}
*/
Carousel.prototype._getPercentage = function(px) {
return (px * 100 / this.slideWidth);
};
/**
* Update slide position based on last known offset
*/
Carousel.prototype.animationUpdate = function() {
this.timer = win.requestAnimationFrame($.proxy(this.animationUpdate, this));
this.$container[0].style.left = this.currentOffset + '%';
};
/**
* Touch start handler
*
* @param {Event} event Touch event
*/
Carousel.prototype.onTouchStart = function(event) {
var touch;
// only swipe for one finger
if (event.originalEvent.touches.length === 1) {
touch = event.originalEvent.touches[0];
this.touchstarted = true;
this.touchstartY = touch.pageY;
this.touchstartX = touch.pageX;
this.touchstartT = Date.now();
this.pageX = parseInt(this.$container.css('left'), 10) || 0;
this.currentOffset = this._getPercentage(this.pageX);
if (this.transitioning) {
// stop current animation, css transitions
this.onAnimationComplete(this.currentOffset, this.targetIndex);
}
this.timer = win.requestAnimationFrame($.proxy(this.animationUpdate, this));
}
};
/**
* Touch move handler
*
* @param {Event} event Touch event
*/
Carousel.prototype.onTouchMove = function(event) {
var touch, dx, isScrolling;
event.stopPropagation();
if (event.originalEvent.touches.length === 1) {
touch = event.originalEvent.touches[0];
isScrolling = Math.abs(touch.pageX - this.touchstartX) < Math.abs(touch.pageY - this.touchstartY);
if (!isScrolling) {
event.preventDefault();
dx = touch.pageX - this.touchstartX;
this.currentOffset = this._getPercentage(this.pageX + dx);
}
}
};
/**
* Touch end handler
*
* @param {Event} event Touch event
*/
Carousel.prototype.onTouchEnd = function(event) {
var touch, dx, dt, pos;
if (event.originalEvent.touches.length === 0 && this.touchstarted) {
this.touchstarted = false;
win.cancelAnimationFrame(this.timer);
touch = event.originalEvent.changedTouches[0];
dx = touch.pageX - this.touchstartX;
dt = Date.now() - this.touchstartT;
this.currentOffset = this._getPercentage(this.pageX + dx);
// detect a swipe
if (dt < 200 && Math.abs(dx) > this.settings.swipeThreshold) {
if (dx > this.settings.swipeThreshold) {
pos = this.currentIndex - 1;
} else {
pos = this.currentIndex + 1;
}
} else {
// go to nearest slide if not a swipe
pos = Math.round(this.currentOffset / -100);
}
this.goToSlide(pos);
}
};
/**
* Keypress handler
*
* @param {Event} event Keydown event
*/
Carousel.prototype.onKeyPress = function(event) {
if (event.keyCode === 37 && this.currentIndex !== 0) {
this.prev();
} else if (event.keyCode === 39 && this.currentIndex !== this.size - 1) {
this.next();
}
};
/**
* Clean up after animation ends
*
* @param {int} offset Offset at the end of animation
* @param {int} index Index of slide that was animated to
*/
Carousel.prototype.onAnimationComplete = function(offset, index) {
this.currentOffset = offset;
this.currentIndex = index;
this.transitioning = false;
this._update();
if (this.supportsTransition) {
this.$container
.off(this.transitionEvent)
.css({
'-webkit-transition-duration': '0s',
'-moz-transition-duration': '0s',
'transition-duration': '0s'
});
}
};
/**
* Start transition to slide
*
* @param {int} index Slide to transition to
*/
Carousel.prototype.goToSlide = function(index) {
var self = this;
if (index < 0) {
index = 0;
} else if (index >= self.size) {
index = self.size - 1;
}
var offset = (index * -100);
var diff = Math.abs(offset - self.currentOffset) / 100;
var endState = {
'left': offset + '%'
};
var transitionSpeed = (self.settings.speed * diff) + 'ms';
if (self.transitioning) {
return;
}
self.transitioning = true;
self.targetIndex = index;
if (self.supportsTransition) {
if (offset === self.currentOffset) {
self.onAnimationComplete(offset, index);
}
self.$container
.css({
'-webkit-transition-duration': transitionSpeed,
'-moz-transition-duration': transitionSpeed,
'transition-duration': transitionSpeed
})
.on(self.transitionEvent, function(e) {
self.onAnimationComplete.call(self, offset, index);
})
.css(endState);
} else {
self.$container.animate(
endState,
self.settings.speed * diff,
function() {
self.onAnimationComplete.call(self, offset, index);
}
);
}
};
/**
* Transition to the previous slide
*/
Carousel.prototype.prev = function() {
var prevIndex = (this.size + this.currentIndex - 1) % this.size;
this.goToSlide(prevIndex);
};
/**
* Transition to the next slide
*/
Carousel.prototype.next = function() {
var nextIndex = (this.currentIndex + 1) % this.size;
this.goToSlide(nextIndex);
};
// add to global namespace
win.Carousel = Carousel;
// add as jQuery plugin
$.fn.carousel = function(options) {
//TODO: add options and extend functionality
if (!this.data('carousel')) {
this.data('carousel', new Carousel(this, options));
}
return this.data('carousel');
};
}(jQuery, window));