mirror of
https://github.com/tildeclub/site.git
synced 2026-01-23 21:40:18 +00:00
tilde.club is back. sign up related update.
This commit is contained in:
21
footer.php
21
footer.php
@@ -1,3 +1,24 @@
|
||||
<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>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user