Scroll to the top of the page using JavaScript?

后端 未结 30 1048
借酒劲吻你
借酒劲吻你 2020-11-22 03:18

How do I scroll to the top of the page using JavaScript? The scrollbar instantly jumping to the top of the page is desirable too as I\'m not looking to achieve smooth scroll

30条回答
  •  甜味超标
    2020-11-22 03:51

    Pure JavaScript solution:

    function scrollToTop() {
      window.scrollTo({
        top: 0,
        behavior: 'smooth'
    });
    

    I write an animated solution on Codepen

    Also, you can try another solution with CSS scroll-behavior: smooth property.

    html {
        scroll-behavior: smooth;
    }
    
    @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }
    }
    

提交回复
热议问题