-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
76 lines (59 loc) · 1.94 KB
/
script.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
$(document).ready(function() {
$("html,body").animate({scrollTop: 0}, 100);
if (window.matchMedia('(min-width: 768px)').matches) {
$(".sec").css("margin-top", $("nav").outerHeight()+10);
$(".left").css({
"height": $(".right").height()-5,
"width": $(".right").height()-5
});
$(".syl-head").hover(function() {
$(this).find(".left").toggle();
})
}
if (window.matchMedia('(max-width: 768px)').matches) {
$(".menu").click(function() {
if($("nav").hasClass("open")) {
$("nav").removeClass("open");
$(".menu h1").text("Menu +");
} else {
$("nav").addClass("open");
$(".menu h1").text("Menu —");
}
})
$("nav a").click(function() {
$("nav").removeClass("open");
$(".menu h1").text("Menu +");
});
}
$(".sec").hide();
$("#syllabus").show();
$("nav a").click(function() {
$("html,body").animate({scrollTop: 0}, 100);
$("nav div").removeClass("active");
let thisLink = $(this).attr("href");
$(".sec").hide();
$(thisLink).show();
$(this).closest("div").addClass("active");
$(".syl-text").hide();
})
$(".syl-head").click(function() {
$(this).closest(".syl-sec").find(".syl-text").slideToggle();
})
})
$(window).resize(function() {
if (window.matchMedia('(max-width: 768px)').matches) {
$(".menu").click(function() {
if($("nav").hasClass("open")) {
$("nav").removeClass("open");
$(".menu h1").text("Menu +");
} else {
$("nav").addClass("open");
$(".menu h1").text("Menu —");
}
})
$("nav a").click(function() {
$("nav").removeClass("open");
$(".menu h1").text("Menu +");
});
}
})