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();
}
}});