繁体   English   中英

平滑滚动的问题

[英]Problems with smooth scrolling

我的网站toncandigital.com的滚动流畅,但显然这破坏了我的订阅部分的Twitter和Facebook锚点。

我有这段JavaScript代码。

 $(document).on('click', 'a', function(event){ event.preventDefault(); $('html, body').animate({ scrollTop: $( $.attr(this, 'href') ).offset().top }, 700); }); 

如果您能帮助我,我将不胜感激:P

您应该将平滑滚动限制为类似这样的导航链接:

$(document).on('click', 'nav.Menu a', function(event){
    event.preventDefault();

    $('html, body').animate({
        scrollTop: $( $.attr(this, 'href') ).offset().top
    }, 700);
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM