How to Scroll Down - JQuery

后端 未结 6 556
慢半拍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:13

        jQuery(function ($) {
            $('li#linkss').find('a').on('click', function (e) {
                var
                    link_href = $(this).attr('href')
                    , $linkElem = $(link_href)
                    , $linkElem_scroll = $linkElem.get(0) && $linkElem.position().top - 115;
                $('html, body')
                    .animate({
                        scrollTop: $linkElem_scroll
                    }, 'slow');
                e.preventDefault();
            });
        });
    

提交回复
热议问题