Initial commit

This commit is contained in:
Konstantin Kollar
2022-10-03 21:13:35 +02:00
commit 8529ee86e4
1120 changed files with 276225 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
var toTopButton = document.getElementById("to-top-button");
// When the user scrolls down 200px from the top of the document, show the button
window.onscroll = function () {
if (
document.body.scrollTop > 250 ||
document.documentElement.scrollTop > 250
) {
toTopButton.classList.remove("hidden");
} else {
toTopButton.classList.add("hidden");
}
};
// When the user clicks on the button, scroll to the top of the document
function goToTop() {
window.scrollTo({ top: 0, behavior: "smooth" });
}