-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
97 lines (68 loc) · 1.98 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
'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);
}
}
/**
* navbar toggle
*/
const navTogglers = document.querySelectorAll("[data-nav-toggler]");
const navbar = document.querySelector("[data-navbar]");
const navbarLinks = document.querySelectorAll("[data-nav-link]");
const overlay = document.querySelector("[data-overlay]");
const toggleNavbar = function () {
navbar.classList.toggle("active");
overlay.classList.toggle("active");
}
addEventOnElem(navTogglers, "click", toggleNavbar);
const closeNavbar = function () {
navbar.classList.remove("active");
overlay.classList.remove("active");
}
addEventOnElem(navbarLinks, "click", closeNavbar);
/**
* header sticky & back top btn active
*/
const header = document.querySelector("[data-header]");
const backTopBtn = document.querySelector("[data-back-top-btn]");
const headerActive = function () {
if (window.scrollY > 150) {
header.classList.add("active");
backTopBtn.classList.add("active");
} else {
header.classList.remove("active");
backTopBtn.classList.remove("active");
}
}
addEventOnElem(window, "scroll", headerActive);
let lastScrolledPos = 0;
const headerSticky = function () {
if (lastScrolledPos >= window.scrollY) {
header.classList.remove("header-hide");
} else {
header.classList.add("header-hide");
}
lastScrolledPos = window.scrollY;
}
addEventOnElem(window, "scroll", headerSticky);
/**
* scroll reveal effect
*/
const sections = document.querySelectorAll("[data-section]");
const scrollReveal = function () {
for (let i = 0; i < sections.length; i++) {
if (sections[i].getBoundingClientRect().top < window.innerHeight / 2) {
sections[i].classList.add("active");
}
}
}
scrollReveal();
addEventOnElem(window, "scroll", scrollReveal);