fixed top navbar and new admin info added

This commit is contained in:
root
2019-09-22 19:40:20 -06:00
parent 90ffb90619
commit 19c91c4033
4 changed files with 41 additions and 40 deletions

View File

@@ -1,24 +1,5 @@
<script>
// When the user scrolls the page, execute myFunction
window.onscroll = function() {myFunction()};
// Get the navbar
var navbar = document.getElementById("navbar");
// Get the offset position of the navbar
var sticky = navbar.offsetTop;
// Add the sticky class to the navbar when you reach its scroll position. Remove "sticky" when you leave the scroll position
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
</script>
<br>
<p>Thanks to the OG tilde.club team! </p>
</div>
<br>
</body>
</html>