$.scrollTo(this.hash || 0, 1500);
在这段代码中,0, 1500
是什么意思?
我试图平滑滚动到标签#URL
中的a
。
我可以理解为什么必须使用this.hash
,但是我不了解关于0, 1500
的部分。请帮助我。
<script>
$(function(){
$('nav a').click(function(e){
$.scrollTo(this.hash || 0, 1500);
e.preventDefault();
});
});
</script>