miminium icon indicating copy to clipboard operation
miminium copied to clipboard

scroll-up button is not there

Open adarsh4489 opened this issue 3 years ago • 4 comments

a button should be present when some one scroll down the page and then it appears so that user cand directly move to the top of the page

adarsh4489 avatar Oct 22 '22 07:10 adarsh4489

and this should be implemented on all pages

adarsh4489 avatar Oct 22 '22 07:10 adarsh4489

i have fixes #28 by adding this.

vivek1384 avatar Jun 18 '25 09:06 vivek1384

  • HTML code to add in every page.

    vivek1384 avatar Jun 18 '25 09:06 vivek1384

    // Scroll btn JavaScript const scrollBtn = document.getElementById("scrollBtn");

    window.addEventListener("scroll", () => { if (window.scrollY > 700) { scrollBtn.style.display = "block"; } else { scrollBtn.style.display = "none"; } }); scrollBtn.addEventListener("click", () => { window.scrollTo({ top: 0, behavior: "smooth", }); }); // Scroll btn JavaScript ends

    JavaScript Code to add in main.js file.

    vivek1384 avatar Jun 18 '25 09:06 vivek1384