24

我不是程序员,但我使用下面的代码将页面滚动到顶部。

如何调整它以向下滚动?

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>

<a class="btnMedio" href="javascript:;">
    <img src="http://desmond.imageshack.us/Himg41/scaled.php?server=41&filename=deixeseuemail.png&res=landing"/>
</a>

<script>
    $('.btnMedio').click(function(){
        $('html, body').animate({scrollTop:1000},'50');
    });
</script>
4

6 回答 6

55
$('.btnMedio').click(function(event) {
    // Preventing default action of the event
    event.preventDefault();
    // Getting the height of the document
    var n = $(document).height();
    $('html, body').animate({ scrollTop: n }, 50);
//                                       |    |
//                                       |    --- duration (milliseconds) 
//                                       ---- distance from the top
});
于 2012-09-29T05:24:51.213 回答
21

尝试这个:

window.scrollBy(0,180); // horizontal and vertical scroll increments
于 2012-09-29T05:34:17.213 回答
9

这可以用来解决这个问题

<div id='scrol'></div> 

在 javascript 中使用这个

jQuery("div#scrol").scrollTop(jQuery("div#scrol")[0].scrollHeight);
于 2013-03-12T16:24:12.813 回答
8

我主要使用以下代码向下滚动

$('html, body').animate({ scrollTop:  $(SELECTOR).offset().top - 50 }, 'slow');
于 2013-07-22T04:14:47.453 回答
3

如果要向下滚动到 div (id="div1")。然后您可以使用此代码。

 $('html, body').animate({
     scrollTop: $("#div1").offset().top
 }, 1500);
于 2019-10-02T10:10:33.987 回答
0
    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();
        });
    });
于 2016-04-11T11:48:53.187 回答