Animate scroll to ID on page load

前端 未结 6 2186
野性不改
野性不改 2020-11-28 01:39

Im tring to animate the scroll to a particular ID on page load. I have done lots of research and came across this:

$(\"html, body\").animate({ scrollTop: $(\         


        
6条回答
  •  自闭症患者
    2020-11-28 02:05

    There is a jquery plugin for this. It scrolls document to a specific element, so that it would be perfectly in the middle of viewport. It also supports animation easings so that the scroll effect would look super smooth. Check this link.

    In your case the code is

    $("#title1").animatedScroll({easing: "easeOutExpo"});
    

提交回复
热议问题