-
Notifications
You must be signed in to change notification settings - Fork 0
/
carouseal.js
683 lines (457 loc) · 15.6 KB
/
carouseal.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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
var carouSeal= (function () {
function round(number,places) {
return +(Math.round(number + "e+" + places) + "e-" + places);
}
function degTan(deg){
return Math.tan(deg*Math.PI/180);
}
function degCos(deg){
return Math.cos(deg*Math.PI/180);
}
function getRotation(obj) {
var matrix = obj.css("-webkit-transform") ||
obj.css("-moz-transform") ||
obj.css("-ms-transform") ||
obj.css("-o-transform") ||
obj.css("transform");
//console.log(matrix);
var values = matrix.split('(')[1].split(')')[0].split(',');
var angle = Math.atan2(values[8], values[0]) * (180/Math.PI);
while (angle < 0) angle +=360;
if (angle>=360) angle = 0;
return angle;
}
function getItemFromId(id){
$.each(items.imgid, function(key, val) {
if (val == id) {
item = key;
return false;
}
});
return item;
// console.log("key from id",item);
}
function setActiveItem(id){
console.log('setActiveItem');
//This is only for row view (4 or less images)
if (id!==undefined) {
//Remove glow on previous center image
$(".carouseal_row_element img").eq(activeitem).removeClass("carouseal_selected_image");
$(".carouseal_row_element img").eq(activeitem).addClass("carouseal_deselected_image");
activeitem = getItemFromId(id);
$(".carouseal_row_element img").eq(activeitem).removeClass("carouseal_deselected_image");
$(".carouseal_row_element img").eq(activeitem).addClass("carouseal_selected_image");
}
//Carousel
else {
//Remove glow on previous center image
$(".carouseal_element img").eq(activeitem).removeClass("carouseal_selected_image");
$(".carouseal_element img").eq(activeitem).addClass("carouseal_deselected_image");
var deg= getRotation($("#carouseal_carousel"));
if (deg > 0) deg = Math.abs(deg-360);
activeitem = Math.abs(Math.round(deg/sector));
if (activeitem==carousellength) activeitem=0;
var id = items.imgid[activeitem];
//console.log(activeitem,deg,sector,deg/sector);
//Add glow on center image
$(".carouseal_element img").eq(activeitem).removeClass("carouseal_deselected_image");
$(".carouseal_element img").eq(activeitem).addClass("carouseal_selected_image");
}
// console.log("setting active item",activeitem);
carouSeal.element.trigger('listenForActiveItem', id);
}
//Adjust covers so that front cover has excactly zero degrees - only used with panning
function adjustItems(duration){
//console.log("adjustitems");
var deg= getRotation($("#carouseal_carousel"));
if (deg > 0) deg = Math.abs(deg-360);
var precisedeg = sector*activeitem;
var rotate = deg-precisedeg;
//console.log("::::::",rotated,rotated%360);
//console.log(deg,precisedeg,rotate);
rotated = rotated+rotate;
addTransforms(duration);
}
function panCarousel(xpos,velocity){
var panwidth = carouselmidpoint;
var exp = 100;
var projectionfactor = (Math.pow(panwidth,exp)-Math.pow(Math.abs(xpos-panwidth),exp))/Math.pow(panwidth,exp);
var speedfactor= 5;
var rotate = (speedfactor*velocity*projectionfactor*heightfactor)/carousellength;
//console.log(speedfactor,velocity,projectionfactor,heightfactor,carousellength,rotate);
rotated = rotated - rotate;
addTransforms(0);
}
//Make sure that any rotation of the carousel from point a to b follows least degree (to rotate in the right direction)
function shortestRotation(item){
var leftdistance = activeitem+(carousellength-item);
var rightdistance = activeitem-item;
if (Math.abs(leftdistance)<Math.abs(rightdistance)) {
var rotate = leftdistance*sector;
if (rotate<-180) rotate = rotate +360;
}
else {
var rotate = rightdistance*sector;
if (rotate>180) rotate = rotate -360;
}
return rotate;
}
function swipeCarousel(x,duration,velocity){
velocity = Math.abs(velocity);
//console.log('swipe',x,duration);
//Swipe
//Sensitivity is how many pixels it takes to swipe one image
if (Math.abs(x)<sensitivity && x<0) x=-sensitivity;
else if (Math.abs(x)<sensitivity && x>0) x=sensitivity;
//Exponentialy increase numOfItemsToMove with velocity
var velocityfactor = Math.pow(1.005,Math.pow(velocity,3));
x = x*velocityfactor;
var numOfItemsToMove = Math.round(x/sensitivity);
rotate=(sector*numOfItemsToMove);
rotated=rotated-rotate;
addTransforms(duration);
$("#carouseal_carousel").one('transitionend webkitTransitionEnd oTransitionEnd otransitionend',function() {
//console.log('rotation finished in swipe');
setActiveItem();
panlock = false;
});
}
function addTransforms(duration){
// console.log('adding transforms');
$("#carouseal_carousel").css({
"-webkit-transform":"translateZ("+(-radius)+"px) rotateY("+(rotated)+"deg)",
"-webkit-transition":"all "+duration+"ms ease-in-out",
"transform":"translateZ("+(-radius)+"px) rotateY("+(rotated)+"deg)",
"transition":"all "+duration+"ms ease-in-out"
});
}
function suspendAutoRotate(){
console.log('suspendAutoRotate');
if (typeof autoRotatingCarousel!=="undefined") {
clearInterval(autoRotatingCarousel);
}
if (typeof waitingForIdleUser!=="undefined") {
carouSeal.element.trigger('autoRotateStop');
clearTimeout(waitingForIdleUser);
autoRotateCarousel("on");
}
}
function autoRotateCarousel(){
//Wait = time to wait before autorotating (if no activity from user after this time)
//autorotatespeed = Rotation autorotatespeed in milliseconds
//Onoff start/stop the listener
if (autorotateonoff=="on") {
if (typeof waitingForIdleUser!=="undefined") {
clearTimeout(waitingForIdleUser);
}
waitingForIdleUser = setTimeout(function(){
console.log('user is idle');
carouSeal.element.trigger('autoRotateStart');
autoRotatingCarousel = setInterval(function(){
//console.log('autoroating carousel');
rotateCarousel(null,autorotatespeed,"next");
},autorotatespeed*3);
},idleuserwait);
}
else if (onoff=="off") {
if (waitingForIdleUser!==undefined) {
clearTimeout(waitingForIdleUser);
}
if (autoRotatingCarousel!==undefined) {
clearInterval(autoRotatingCarousel);
}
}
}
//Used by rotateTo from user added left/right-buttons, keybinds etc.
function rotateCarousel(id,duration,nextprev) {
console.log("rotateCarousel",id);
if (duration===undefined) duration=0;
//Next/prev
if (id===null && nextprev!==undefined) {
if (nextprev=="next") {
//At end
if (activeitem==carousellength-1) rotateCarousel(items.imgid[0],rotatefast);
//Normal
else rotateCarousel(items.imgid[(activeitem+1)],rotatefast);
return false;
}
if (nextprev=="prev"){
if (activeitem==0) rotateCarousel(items.imgid[(carousellength-1)],rotatefast);
//Normal
else rotateCarousel(items.imgid[(activeitem-1)],rotatefast);
return false;
}
}
//RotateTo
else {
var item = getItemFromId(id);
rotate=shortestRotation(item);
}
rotated = rotated - rotate;
//Need timeout zero here because DOM REASONS
setTimeout(function(){
if (duration){
addTransforms(duration);
$("#carouseal_carousel").one('transitionend',function(e) {
//console.log('rotation finished in rotate with duration');
setActiveItem();
});
}
else {
addTransforms(0);
setActiveItem();
//console.log('rotation finished in rotate with NO duration');
}
});
////
}
function createRow($myCarousel,$imgs,initid){
console.log('createRow',$imgs.length);
carouselwidth = $myCarousel.width();
carouselheight = $myCarousel.height();
carousellength = $imgs.length;
activeitem=0;
//Empty element
$myCarousel.empty();
//Add carousel structure to element
$myCarousel.append('<div class="carouseal_container"><div id="carouseal_row" class="carouseal_row carouseal_flex_parent"></div></div>');
items = {};
items.imgid = [];
//Add images back to div with new structure
$imgs.each(function(i){
$img = $(this);
$myCarousel.find(".carouseal_row").append('<div class="carouseal_row_element carouseal_flex_child"></div>');
//Add images
$img.addClass("carouseal_image");
$(".carouseal_row_element").eq(i).append($img);
//If images have ids add them to carousel_element item div (the parent of the image)
$(".carouseal_row_element").eq(i).attr('id',$img.attr("id"));
items.imgid.push($img.attr("id"));
var mc = new Hammer($img[0],{preventDefault: true});
mc.on('tap',function(ev){
//To prevent misfiring, check that the tap is the first
if (ev.tapCount==1) {
setActiveItem(ev.target.id);
}
});
});
if (initid !==undefined) activeitem=getItemFromId(initid);
$(".carouseal_row_element img").eq(activeitem).addClass("carouseal_selected_image");
}
function createCarousel($myCarousel,$imgs,initid) {
console.log('createCarousel');
resolutionfactor = 1920/$(window).width();
panlock = false;
waitforpan = false;
carouselwidth = $myCarousel.width();
carouselheight = $myCarousel.height();
carouselmidpoint = round($myCarousel.position().left+(carouselwidth/2),1);
widthfactor = 1900/carouselwidth;
heightfactor = 450/carouselheight;
rotating=false;
rotated=0;
activeitem=0;
//How many pixels it takes to swipe one cover at "normal" speed
sensitivity= 150*resolutionfactor;
rotateslow = 600;
rotatefast= 400;
itemwidth = round($myCarousel.height()/1.4,2);
carousellength = $imgs.length;
sector = 360/carousellength;
radius = itemwidth/2/degTan(sector/2);
perspective = (18600/carousellength)/widthfactor;
items = {};
items.imgid = [];
//Empty element
$myCarousel.empty();
//Add carousel structure to element
$myCarousel.append('<div class="carouseal_container"><div id="hammer_overlay"></div><div id="carouseal_carousel" class="carouseal_carousel"></div></div>');
//Add images back to div with new structure
var rotate = 0;
$imgs.each(function(i){
$img = $(this);
//Add transforms to elements,
$myCarousel.find(".carouseal_carousel").append('<div class="carouseal_element" style="width:'+itemwidth+'px; transform: rotateY('+rotate+'deg) translateZ('+radius+'px); -webkit-transform: rotateY('+rotate+'deg) translateZ('+radius+'px);"></div>');
//Add images
$img.addClass("carouseal_image");
$(".carouseal_element").eq(i).append($img);
//If images have ids add them to carousel_element item div (the parent of the image)
$(".carouseal_element").eq(i).attr('id',$img.attr("id"));
items.imgid.push($img.attr("id"));
//This applies to images that are too wide (wider than itemwidth)
$img.one("load", function() {
if ($(this).width()>itemwidth-10) {
var oldheight = $(this).height();
var oldwidth = $(this).height();
var newwidth = itemwidth-20;
var newheight = oldheight/(oldwidth/newwidth);
$(this).css({
"width":newwidth,
"height":newheight
});
}
});
//Debug
//$(".carouseal_element").eq(i).prepend('<div class="debug">'+i+'<br>'+$img.attr("id")+'</div>');
rotate = rotate + sector;
});
//Add transforms to carousel
$(".carouseal_carousel").css ({
"-webkit-transform":"translateZ("+(-radius)+"px)",
"transform":"translateZ("+(-radius)+"px)",
"width":itemwidth
});
//Add perspective to carouseal_container
$(".carouseal_container").css ({
"-webkit-perspective":perspective,
"perspective": perspective
});
//DEBUG PREV/NEXT
/*
Escape/Enter to move
$(document).keyup(function(e) {
switch(e.which) {
case 13: // left
carouSeal.rotatePrev();
break;
case 27: // right
carouSeal.rotateNext();;
break;
}
e.preventDefault();
});
*/
//////////////////////////////////
//If initid is defined spin carousel to that item
if (initid!==undefined) {
console.log('Rotating unpon init to',initid);
rotateCarousel(initid);
}
else {
setActiveItem();
}
$(window).resize(function () {
waitForFinalEvent(function(){
var item = activeitem;
activeitem = 0;
carouSeal.initCarousel(items.imgid[item]);
}, 300, "blowfish");
});
carousealHammer();
}
function carousealHammer(){
//Init hammer.js
// console.log('Hammer time!');
waitforswipe=false;
var mc = new Hammer($('#hammer_overlay')[0],{preventDefault: true});
//Register hammer.js events
//This is to let swipe be prioritized to pan
mc.on('press',function(ev){
waitforswipe=true; setTimeout(function(){ waitforswipe = false;},200);
//console.log("waitforswipe",waitforswipe);
});
//
mc.get('press').set({ time: 1});
$(document).on('touchstart', function(event) {
suspendAutoRotate();
console.log('touchdown!!');
});
mc.on('swiperight swipeleft', function(ev) {
//console.log("swipe waitforpan",waitforpan);
if (!waitforpan) {
//Lock so pan can't be fired before swipe is finished
panlock = true;
swipeCarousel(ev.deltaX,rotateslow,ev.velocityX*-1);
}
});
mc.on('panleft panright',function(ev) {
//console.log("pan waitforswipe",waitforswipe);
if (!panlock && !waitforswipe) {
waitforpan=true;
panCarousel(ev.center.x,(ev.velocityX*-1));
}
});
mc.on('panend',function(ev) {
//console.log('panend panlock',panlock);
//A little pause so a pan doesn't accidentally fire a swipe
setTimeout(function(){ waitforpan = false;},100);
if (!panlock) {
setActiveItem();
adjustItems(300);
}
});
}
var obj = {};
obj.rotateNext = function() {
if (carousellength>mincarousellength) rotateCarousel(null,rotatefast,"next");
};
obj.rotatePrev = function() {
if (carousellength>mincarousellength) rotateCarousel(null,rotatefast,"prev");
};
obj.rotateTo = function(id) {
if (carousellength>mincarousellength) rotateCarousel(id,rotatefast);
};
obj.autoRotate = function(onoff,wait,speed) {
if (carousellength>mincarousellength) {
//Default on
if (onoff===undefined) autorotateonoff="on";
else if (onoff===null) autorotateonoff="on";
else if (!onoff) autorotateonoff="on";
else autorotateonoff = onoff;
//Default wait 2 mins
if (wait==undefined) idleuserwait=120000;
else if (!wait) idleuserwait==120000;
else idleuserwait=wait;
//Default speed = rotateslow
if (speed==undefined) autorotatespeed=rotateslow;
else if (!wait) autorotatespeed==rotateslow;
else autorotatespeed=wait;
autoRotateCarousel();
}
};
obj.getActiveitem = function() {
return items.imgid[activeitem];
};
obj.initCarousel = function(initid) {
/*
$(window).mousemove(function(e){
suspendAutoRotate();
});
$(window).keydown(function(e){
suspendAutoRotate();
});
*/
mincarousellength = 4;
// traverse all nodes
carouSeal.element.each(function() {
//Fetch element to be honked
$myCarousel = $(this);
//Find all images in element
var $imgs = $myCarousel.find("img");
if (!$imgs.length) {
// console.log('No images in element!');
return this;
}
//Create carouseal if there are more than four images
if ($imgs.length>mincarousellength) createCarousel($myCarousel,$imgs,initid);
//Else make static row of 2-d images
else createRow($myCarousel,$imgs,initid);
//createCarousel($myCarousel,$imgs,initid);
});
carouSeal.element.trigger('carouselDone');
};
return obj;
})();
//Avoid resize loop madness with custom function (thanks stackoverflow)
var waitForFinalEvent = (function () {
var timers = {};
return function (callback, ms, uniqueId) {
if (!uniqueId) {
uniqueId = "Don't call this twice without a uniqueId";
}
if (timers[uniqueId]) {
clearTimeout (timers[uniqueId]);
}
timers[uniqueId] = setTimeout(callback, ms);
};
})();