0

我设置了一个评论按钮,链接到页面的评论部分,就像这样评论

本页演示 http://stramaxon.blogspot.com/2012/04/how-to-remove-shadows-from-pictures-in.html#disqus_thread

当您单击它时,您将被带到评论部分,现在我希望滚动流畅,我知道这是可能的,但找不到实现它的关键。我确信 Stackoverflow 中的智能网页设计师会帮助我。

我希望它是这样的,请查看此页面http://www.labnol.org/internet/bing-background-for-google-homepage/21303/

向下滚动,您会看到一个返回顶部按钮,它非常流畅,我喜欢它并想要类似的东西。

4

1 回答 1

2
$("#topBtn").click(scrollToTop);

function scrollToTop()
{
    $('html, body').animate({scrollTop:0}, 1000);
}

应该管用

编辑:这是一个非href,当你想在href上使用它时,你应该像这样

function scrollToTop()
{
    $('html, body').animate({scrollTop:0}, 1000);
    return false;
}
于 2012-05-20T09:54:45.237 回答