-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
57 lines (40 loc) · 1.07 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
'use strict';
/**
* add event on element
*/
const addEventOnElem = function (elem, type, callback) {
if (elem.length > 1) {
for (let i = 0; i < elem.length; i++) {
elem[i].addEventListener(type, callback);
}
} else {
elem.addEventListener(type, callback);
}
}
/**
* toggle navbar
*/
const navbar = document.querySelector("[data-navbar]");
const navLinks = document.querySelectorAll("[data-nav-link]");
const navToggler = document.querySelector("[data-nav-toggler]");
const toggleNavbar = function () {
navbar.classList.toggle("active");
navToggler.classList.toggle("active");
}
addEventOnElem(navToggler, "click", toggleNavbar);
const closeNavbar = function () {
navbar.classList.remove("active");
navToggler.classList.remove("active");
}
addEventOnElem(navLinks, "click", closeNavbar);
/**
* header active
*/
const header = document.querySelector("[data-header]");
window.addEventListener("scroll", function () {
if (window.scrollY > 100) {
header.classList.add("active");
} else {
header.classList.remove("active");
}
});