MediaWiki
Foreground.js: Difference between revisions
From Grouse House Wiki
No edit summary |
No edit summary |
||
| Line 5: | Line 5: | ||
var sidebarlogo = document.getElementById("sidebarlogo"); | var sidebarlogo = document.getElementById("sidebarlogo"); | ||
pagecontent.addEventListener("scroll", scrollFunction()); | |||
function scrollFunction() { | function scrollFunction() { | ||
Revision as of 19:00, 1 February 2025
/* Scroll to top and sidebar logo */
var pagecontent = document.getElementById("page-content");
var scrollbutton = document.getElementById("scrollToTop");
var sidebarlogo = document.getElementById("sidebarlogo");
pagecontent.addEventListener("scroll", scrollFunction());
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
sidebarlogo.style.display = "block";
scrollbutton.style.display = "block";
} else {
sidebarlogo.style.display = "none";
scrollbutton.style.display = "none";
}
}
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
