mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2025-01-01 12:26:00 +00:00
12 lines
296 B
JavaScript
12 lines
296 B
JavaScript
button = document.getElementById("back-to-top");
|
|
|
|
window.onscroll = function() {scrollFunction()};
|
|
|
|
function scrollFunction() {
|
|
if (document.body.scrollTop > 300 || document.documentElement.scrollTop > 20) {
|
|
button.style.right = "1rem";
|
|
} else {
|
|
button.style.right = "-2.5rem";
|
|
}
|
|
}
|