-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
43 lines (35 loc) · 1.09 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
// change navbar style on scroll
window.addEventListener("scroll", () => {
document
.querySelector("nav")
.classList.toggle("window-scroll", window.scrollY > 0);
});
// show hide faq answer
const faqs = document.querySelectorAll(".faq");
faqs.forEach((faq) => {
faq.addEventListener("click", () => {
faq.classList.toggle("open");
// change icon
const icon = faq.querySelector(".faq_icon i");
if (icon.className === "ri-add-large-line") {
icon.className = "ri-close-large-line";
} else {
icon.className = "ri-add-large-line";
}
});
});
// show / hide nav menu
const menu = document.querySelector(".nav_menu");
const menuBtn = document.querySelector("#open-menu-btn");
const closeBtn = document.querySelector("#close-menu-btn");
menuBtn.addEventListener("click", () => {
menu.style.display = "flex";
closeBtn.style.display = "inline-block";
menuBtn.style.display = "none";
});
const closeNav = () => {
menu.style.display = "none";
closeBtn.style.display = "none";
menuBtn.style.display = "inline-block";
};
closeBtn.addEventListener("click", closeNav);