smooth scroll to top

前端 未结 12 1220
眼角桃花
眼角桃花 2020-12-07 22:58

I\'ve bean searching for this for a few hours now and I have no solution. I want a smooth scroll to the top of the page. I already have smooth scrolling to separate anchors

12条回答
  •  星月不相逢
    2020-12-07 23:32

    I think the simplest solution is:

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

    If you wanted instant scrolling then just use:

    window.scrollTo({top: 0});
    

    Can be used as a function:

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

    Or as an onclick handler:

    
    

提交回复
热议问题