forked from jupyter/jupyter.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimon.js
53 lines (44 loc) · 1.02 KB
/
simon.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
(function(){
"use strict";
var div1 = $(".div1" );
var div2 = $(".div2" );
var div3 = $(".div3" );
var div4 = $(".div4" );
var button1 = $(".button1");
var button2 = $(".button2");
var button3 = $(".button3");
var button4 = $(".button4");
div1.css("display", '');
div2.css("display", 'none');
div3.css("display", 'none');
div4.css("display", 'none');
var anim = false;
var active = div1;
var selected = button1;
button1.addClass("menuClicked")
var link = function(target_div, target_button){
target_button.on('click',
function(e) {
if (!anim && active != target_div) {
selected.removeClass("menuClicked");
target_button.addClass("menuClicked");
selected = target_button;
swap(active, target_div);
}
}
)
}
link(div1, button1);
link(div2, button2);
link(div3, button3);
link(div4, button4);
var swap = function(div1, div2) {
anim = true;
div1.fadeOut( 200 , function() {
div2.fadeIn(200, function() {
active = div2;
anim = false;
});
});
}
})()