$ .scrollTo(this.hash || 0,1500); ?数字是什么意思?

时间:2019-06-04 05:37:42

标签: javascript jquery html css scrollto

$.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>

0 个答案:

没有答案