-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.js
49 lines (38 loc) · 1.16 KB
/
main.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
$(document).ready(function () {
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini|Mobile/i.test(navigator.userAgent)) {
set_up_mobile();
} else {
create_canvas();
}
bind_handlers();
});
$(window).on('resize', function () {
resize_canvas();
});
function bind_handlers() {
$(document).on("mousemove", function (e) {
light_box(e.clientX, e.clientY);
});
}
function set_up_mobile() {
$("#cards").css("display", "none");
$("#mobile_bar").css("display", "flex");
create_canvas();
}
function checkHash(hash, obj) {
return hash[obj] === true;
}
function shuffle(array) {
var currentIndex = array.length, temporaryValue, randomIndex;
// While there remain elements to shuffle...
while (0 !== currentIndex) {
// Pick a remaining element...
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;
// And swap it with the current element.
temporaryValue = array[currentIndex];
array[currentIndex] = array[randomIndex];
array[randomIndex] = temporaryValue;
}
return array;
}