-
Notifications
You must be signed in to change notification settings - Fork 0
/
pagescripts.js
40 lines (37 loc) · 1.26 KB
/
pagescripts.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
/*Animates the buttons */
$.fn.btnAnimate = function () {
$(this).hover(
function () {
$(this).stop().animate({marginTop:'-20px'});
},
function () {
$(this).stop().animate({marginTop:'0px'});
}
);
};
/*Event to call button animation*/
$("#Btn1").on("mouseover", $("#Btn1").btnAnimate());
$("#Btn2").on("mouseover", $("#Btn2").btnAnimate());
$("#Btn3").on("mouseover", $("#Btn3").btnAnimate());
$("#Btn4").on("mouseover", $("#Btn4").btnAnimate());
/*Button Clicks to show and hide divs*/
$("#Btn1").on("click",function(){
$("#placeHolder,#nav1,#nav2,#nav3,#nav4").hide(200);
$("#nav1").show(200);
$("#nav1").addClass("contentBox").removeClass("hiddenBox");
});
$("#Btn2").on("click",function(){
$("#placeHolder,#nav1,#nav2,#nav3,#nav4").hide(200);
$("#nav2").show(200);
$("#nav2").addClass("contentBox").removeClass("hiddenBox");
});
$("#Btn3").on("click",function(){
$("#placeHolder,#nav1,#nav2,#nav3,#nav4").hide(200);
$("#nav3").show(200);
$("#nav3").addClass("contentBox").removeClass("hiddenBox");
});
$("#Btn4").on("click",function(){
$("#placeHolder,#nav1,#nav2,#nav3,#nav4").hide(200);
$("#nav4").show(200);
$("#nav4").addClass("contentBox").removeClass("hiddenBox");
});