-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmain.js
More file actions
68 lines (50 loc) · 1.68 KB
/
main.js
File metadata and controls
68 lines (50 loc) · 1.68 KB
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
// change navbar styles 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 === 'uil uil-plus'){
icon.className = 'uil uil-minus'
} else{
icon.className = 'uil uil-plus'
}
})
})
// 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";
})
// close nav menu
const closeNav = () => {
menu.style.display = "none";
closeBtn.style.display = "none";
menuBtn.style.display = "inline-block";
}
closeBtn.addEventListener('click', closeNav)
//night theme
var icon = document.getElementById("icon");
var mainlogo = document.getElementById("mainlogo");
icon.onclick = function () {
document.body.classList.toggle("dark-theme");
if (document.body.classList.contains("dark-theme")) {
icon.src="images/day-mode.png";
mainlogo.src="images/Logos/TechBrewersLogo.png";
mainlogo.style.width="13.5rem";
}
else {
icon.src="images/night-mode.png";
mainlogo.src="images/Logos/TechBrewersLogo_black.png";
mainlogo.style.width="15rem";
}
}