Automated deployment: Tue Feb 11 21:56:43 UTC 2020 fe926d1898

This commit is contained in:
TroogS
2020-02-11 21:56:43 +00:00
parent 3963e68b01
commit baea03e3f1
11 changed files with 8060 additions and 1 deletions

View File

@@ -1 +1,9 @@
console.log(1);
// Scroll Listener
if (document.body.classList.contains("hero")) {
window.addEventListener("scroll", function () {
if (window.scrollY > 10)
document.body.classList.add("scroll");
else
document.body.classList.remove("scroll");
});
}