我使用scrollTop
jQuery中的函数导航到顶部,但是奇怪的是,在进行了一些更改后,“平滑动画滚动”在Safari和Chrome中停止工作(滚动时没有平滑动画)。
但是它在Firefox中仍然可以正常运行。有什么事吗
这是我使用的jQuery函数,
jQuery的:
$('a#gotop').click(function() {
$("html").animate({ scrollTop: 0 }, "slow");
//alert('Animation complete.');
//return false;
});
的HTML
<a id="gotop" href="#">Go Top </a>
的CSS
#gotop {
cursor: pointer;
position: relative;
float: right;
right: 20px;
/*top:0px;*/
}