-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: replace external scrolltotop solution with own
Closes: #365
- Loading branch information
Showing
2 changed files
with
45 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<style> | ||
#btn-back-to-top { | ||
position: fixed; | ||
bottom: 20px; | ||
right: 20px; | ||
display: none; | ||
opacity: 0.5; | ||
} | ||
</style> | ||
<button type="button" | ||
class="btn btn-danger btn-floating btn-lg" | ||
id="btn-back-to-top"> | ||
<span>↑</span> | ||
</button> | ||
<script> | ||
//Get the button | ||
let mybutton = document.getElementById("btn-back-to-top"); | ||
|
||
// When the user scrolls down 20px from the top of the document, show the button | ||
window.onscroll = function () { | ||
scrollFunction(); | ||
}; | ||
|
||
function scrollFunction() { | ||
if ( | ||
document.body.scrollTop > 20 || | ||
document.documentElement.scrollTop > 20 | ||
) { | ||
mybutton.style.display = "block"; | ||
} else { | ||
mybutton.style.display = "none"; | ||
} | ||
} | ||
// When the user clicks on the button, scroll to the top of the document | ||
mybutton.addEventListener("click", backToTop); | ||
|
||
function backToTop() { | ||
document.body.scrollTop = 0; | ||
document.documentElement.scrollTop = 0; | ||
} | ||
</script> |