Animate jQuery scrolltop

后端 未结 3 1350
我在风中等你
我在风中等你 2021-01-14 00:32

I have a scrollTop function in jQuery but I can\'t animate it. Is it possible?

$(\".loadmore\").click(function() {
  $(this).toggleClass(\"up-arrow\", 1000);         


        
3条回答
  •  北恋
    北恋 (楼主)
    2021-01-14 01:18

    $('#ID').click(function(){
    $("html, body").animate({ scrollTop: 0 }, 1000);
    return false;         });
    

    Try this code of Jquery

提交回复
热议问题