How to Scroll Down - JQuery

后端 未结 6 555
慢半拍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 19:16

    I mostly use following code to scroll down

    $('html, body').animate({ scrollTop:  $(SELECTOR).offset().top - 50 }, 'slow');
    

提交回复
热议问题