平滑滚动到div id jQuery

我一直试图让滚动div ID jQuery代码才能正常工作。 基于另一个堆栈溢出问题,我尝试了以下

DEMO http://jsfiddle.net/kevinPHPkevin/8tLdq/

$('#myButton').click(function() {
   $.scrollTo($('#myDiv'), 1000);
});

但它没有奏效。 它只是捕捉到div。 我也试过了

$('#myButton').click(function(event) {
     event.preventDefault();
   $.scrollTo($('#myDiv'), 1000);
});

没有进展。


你需要动画html, body

DEMO http://jsfiddle.net/kevinPHPkevin/8tLdq/1/

$("#button").click(function() {
    $('html, body').animate({
        scrollTop: $("#myDiv").offset().top
    }, 2000);
});

如果您想要在页面上覆盖标准的href-id导航而不更改平滑滚动的 HTML标记,请使用以下示例:

// handle links with @href started with '#' only
$(document).on('click', 'a[href^="#"]', function(e) {
    // target element id
    var id = $(this).attr('href');

    // target element
    var $id = $(id);
    if ($id.length === 0) {
        return;
    }

    // prevent standard hash navigation (avoid blinking in IE)
    e.preventDefault();

    // top position relative to the document
    var pos = $id.offset().top;

    // animated top scrolling
    $('body, html').animate({scrollTop: pos});
});

这是我的2美分:

使用Javascript:

$('.scroll').click(function() {
    $('body').animate({
        scrollTop: eval($('#' + $(this).attr('target')).offset().top - 70)
    }, 1000);
});

HTML:

<a class="scroll" target="contact">Contact</a>

和目标:

<h2 id="contact">Contact</h2>
链接地址: http://www.djcxy.com/p/49641.html

上一篇: Smooth scroll to div id jQuery

下一篇: Smooth scrolling when clicking an anchor link