你应该使用 CSS3 过渡:{original DEMO site: http://mitgux.com/demo/smooth-scroll-to-top-using-css3-animations/index.php }
演示
$('a').click(function (e) {
e.preventDefault();
$("body").css({
"margin-top": -$(this).offset().top+"px",
"overflow-y": "scroll", // This property is posed for fix the blink of the window width change
});
$(window).scrollTop(0);
$("body").css("transition", "margin-top 1.2s ease");
$("body").css("margin-top", "0");
$("body").on("webkitTransitionEnd transitionend msTransitionEnd oTransitionEnd", function () {
// Remove the transition property
$("body").css("transition", "none");
});
});