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 に答える
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 に答える