Initial commit

This commit is contained in:
2021-05-31 22:36:54 +02:00
commit 50801d45ce
99 changed files with 4299 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
function navbarToggleOnScroll() {
var el = document.getElementById("navbar");
if (window.pageYOffset >= 500) {
el.classList.add("scroll");
} else {
el.classList.remove("scroll");
}
};
window.addEventListener("scroll", navbarToggleOnScroll);