此技术非常简单。
-
像往常一样设置链接, 例如:
href =“#comments”
(comments是目标的ID) -
在link元素上添加一个class =“ scroll”属性,现在看起来像这样:
<a href="#comments" class="scroll"> 滚动到评论 </a>
-
最后,在合适的位置添加以下jQuery代码:
jQuery(document).ready(function($) { $(".scroll").click(function(event){ event.preventDefault(); $('html,body').animate({scrollTop:$(this.hash).offset().top}, 500); }); });
为了方便,$('.scroll') 选择器可以使用
这就是全部🙂
实施此脚本的一个常见错误是为目标使用“命名锚”,而不是目标元素上的id属性。如果由于某种原因(例如,由于所见即所得的限制)而被命名锚定卡住,则可以尝试从Giles进行以下修改:
$('html,body').animate({scrollTop:$('[name="'+this.hash.substring(1)+'"]').offset().top}, 500);
参考链接:http://www.sycha.com/jquery-smooth-scrolling-internal-anchor-links
$('#back-top').click(function () {
$('body,html').animate({
scrollTop: 0
}, 800);
return false;
});
如果您不介意不支持所有主流浏览器(仅Firefox 36 +,Chrome 61+和Opera 48+),请使用锚点链接和此单个属性作为滚动容器:
scroll-behavior: smooth;
像这样使用它:
<head>
<style type="text/css">
html {
scroll-behavior: smooth;
}
</style>
</head>
<body id="body">
<a href="#foo">Go to foo!</a>
<!-- Some content -->
<div id="foo">That's foo.</div>
<a href="#body">Back to top</a>
</body>
使用JS滚动到元素位置
window.scrollTo(0, document.getElementById('scorll').offsetTop);