Smooth Scrolling在滚动上添加活动类

时间:2014-05-26 12:38:15

标签: jquery scroll

i使用以下脚本为我的网站添加平滑滚动功能。我知道当用户滚动并到达相应部分时,我想添加将css类添加到导航的可能性。任何想法?

$('.menu a[href*=#]').click(function(e) {
if (location.pathname.replace('/^\//','') == this.pathname.replace('/^\//','')
    && location.hostname == this.hostname) {
    var hash = this.hash;
    var $target = $(this.hash);
    $target = $target.length && $target
        || $('[name=' + this.hash.slice(1) +']');
    if ($target.length) {
        $('.active').removeClass('active');
        $(this).parent().addClass('active');
        var targetOffset = $target.offset().top;
        $('html,body')
        .animate({
            scrollTop: targetOffset
        }, 750, function() {
            location.hash = hash;
        });
        e.preventDefault();

    }
}});

0 个答案:

没有答案