16 lines
504 B
JavaScript
16 lines
504 B
JavaScript
window.addEventListener('load', () => {
|
|
const gttButton = document.getElementById("totop");
|
|
if (!gttButton) return;
|
|
window.onscroll = () => {
|
|
if (
|
|
document.body.scrollTop > 300 ||
|
|
document.documentElement.scrollTop > 300
|
|
) {
|
|
gttButton.style.visibility = "visible";
|
|
gttButton.style.opacity = "1";
|
|
} else {
|
|
gttButton.style.visibility = "hidden";
|
|
gttButton.style.opacity = "0";
|
|
}
|
|
};
|
|
});
|