-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
58 lines (46 loc) · 1.72 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
async function loadHeader() {
try {
const response = await fetch("header.html");
// Check if the file was found
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.text();
document.getElementById("header").innerHTML = data;
const h3head = document.getElementById("h3head");
const h3headcopy = document.getElementById("h3head");
let lastScrollTop = 0;
window.addEventListener("scroll", function () {
let scrollTop = window.pageYOffset || document.documentElement.scrollTop;
// Add or remove class based on scroll direction
if (scrollTop > lastScrollTop) {
header.classList.add("header-small");
} else if (scrollTop === 0) {
header.classList.remove("header-small");
}
lastScrollTop = scrollTop;
});
document.querySelector(".menu-toggle").addEventListener("click", function () {
document.querySelector(".nav-links").classList.toggle("show");
});
} catch (error) {
console.error("Error loading header:", error);
}
}
// Call the function to load the header
loadHeader();
async function loadfooter() {
try {
const response = await fetch("footer.html");
// Check if the file was found
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.text();
document.getElementById("footer").innerHTML = data;
} catch (error) {
console.error("Error loading footer:", error);
}
}
// Call the function to load the footer
loadfooter();