How to Scroll Down - JQuery

后端 未结 6 590
慢半拍i
慢半拍i 2020-12-05 18:37

I\'m not a programmer, but I use the code below to scroll the page to the top.

How can I adapt it to make a scroll down?



        
6条回答
  •  难免孤独
    2020-12-05 18:59

    If you want to scroll down to the div (id="div1"). Then you can use this code.

     $('html, body').animate({
         scrollTop: $("#div1").offset().top
     }, 1500);
    

提交回复
热议问题