Cross browser JavaScript (not jQuery…) scroll to top animation

后端 未结 20 1078
抹茶落季
抹茶落季 2020-11-22 11:01

I\'m looking for a simple, cross-browser \"scroll to top\" animation I can apply to a link. I don\'t want to require a JS library such as jQuery/Moo, etc.

//         


        
20条回答
  •  Happy的楠姐
    2020-11-22 11:33

    There is actually a pure javascript way to accomplish this without using setTimeout or requestAnimationFrame or jQuery.

    In short, find the element in the scrollView that you want to scroll to, and use scrollIntoView

    el.scrollIntoView({behavior:"smooth"});

    Here is a plunkr.

提交回复
热议问题