-
Notifications
You must be signed in to change notification settings - Fork 45
/
jquery.shuffle-images.js
148 lines (111 loc) · 4.5 KB
/
jquery.shuffle-images.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
/* ===========================================================
* jquery.shuffle-images.js v1.0
* ===========================================================
* Copyright 2014 Pete Rojwongsuriya.
* http://www.thepetedesign.com
*
* Shuffle Images let you display and shuffle multiple
* images by moving cursor around and many more ways to trigger.
*
* https://github.com/peachananr/shuffle-images
*
* License: GPL v3
*
* ========================================================== */
!function($){
var defaults = {
trigger: "imageMouseMove",
triggerTarget: false,
mouseMoveTrigger: 50,
hoverTrigger: 200,
scrollTrigger: 100,
target: "> img"
};
$.fn.shuffleImages = function(options){
return this.each(function(){
var settings = $.extend({}, defaults, options),
el = $(this),
prevLoc = 0,
mouseMoveTrigger = settings.mouseMoveTrigger,
hoverTrigger = settings.hoverTrigger,
scrollTrigger = settings.scrollTrigger,
triggerTarget = settings.triggerTarget;
el.addClass("si-container").find(settings.target).css({
maxWidth: "100%"
}).not(":first-child").hide()
el.find("> img:first-child").addClass("active")
if (el.attr("data-si-mousemove-trigger")) mouseMoveTrigger = el.data("si-mousemove-trigger");
if (el.attr("data-si-hover-trigger")) hoverTrigger = el.data("si-hover-trigger");
if (el.attr("data-si-scroll-trigger")) scrollTrigger = el.data("si-scroll-trigger");
if (settings.triggerTarget == false) triggerTarget = el;
switch(settings.trigger) {
case "imageMouseMove":
triggerTarget.mousemove(function(event) {
var math = Math.round(Math.sqrt(Math.pow(event.clientY, 2) +Math.pow( event.clientX, 2))) + 'px';
if(Math.abs(parseInt(math) - prevLoc) > mouseMoveTrigger){
var active = el.find("img.active");
if (active.next().length > 0) {
active.next().addClass("active").show();
active.removeClass("active").hide();
} else {
el.find("img:first-child").addClass("active").show();
active.removeClass("active").hide();
}
prevLoc = parseInt(math);
}
});
break;
case "imageHover":
var triggerTime;
triggerTarget.mouseover(function(e) {
triggerTime = setInterval(function(){
var active = el.find("img.active");
if (active.next().length > 0) {
active.next().addClass("active").show();
active.removeClass("active").hide();
} else {
el.find("img:first-child").addClass("active").show();
active.removeClass("active").hide();
}
}, hoverTrigger);
}).mouseout(function(e) {
clearInterval(triggerTime);
});
break;
case "documentMouseMove":
$(document).mousemove(function(event) {
var math = Math.round(Math.sqrt(Math.pow(event.clientY, 2) +Math.pow(event.clientX, 2))) + 'px';
if(Math.abs(parseInt(math) - prevLoc) > mouseMoveTrigger){
var active = el.find("img.active");
if (active.next().length > 0) {
active.next().addClass("active").show();
active.removeClass("active").hide();
} else {
el.find("img:first-child").addClass("active").show();
active.removeClass("active").hide();
}
prevLoc = parseInt(math);
}
});
break;
case "documentScroll":
$(document).on('touchmove mousewheel DOMMouseScroll', function(e, delta) {
var math = $(document).scrollTop();
if(Math.abs(parseInt(math) - prevLoc) > scrollTrigger){
var active = el.find("img.active");
if (active.next().length > 0) {
active.next().addClass("active").show();
active.removeClass("active").hide();
} else {
el.find("img:first-child").addClass("active").show();
active.removeClass("active").hide();
}
prevLoc = parseInt($(document).scrollTop());
}
});
break;
default:
}
});
}
}(window.jQuery);