简体   繁体   中英

how to show a div after 500px using pure JavaScript?

i have a <button> calls a function that scroll to the top of the page, how to appear this button automatically after 800px. using pure JavaScript Only?

<button class="button">
  GO To UP
</button>   
var button = document.querySelector(".button");

button.onclick = function () {
  window.scrollTo(0, 0);
};

One approach could be having a hidden class on the button, and in css we can give the visibility of this class to be hidden.

.hidden {
  visibilty: hidden;
}

For handling the scroll functionality we can use this function

var button = document.querySelector(".button");

button.onclick = function(){
    window.scrollTo(0, 0);
}

window.addEventListener("scroll", () => {
    var y = window.scrollY;
    if (y >= 500) {
        button.classList.remove("hidden");
    } else {
        button.classList.add("hidden");
    }
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM