mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2025-01-01 12:26:00 +00:00
14 lines
349 B
JavaScript
14 lines
349 B
JavaScript
$(document).ready(function() {
|
|
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";
|
|
}
|
|
}
|
|
});
|