有没有办法可以抵消这个滚动功能,使它在滚动到的元素上方停止80px?
我有一个固定的标题,高度为80像素,当我滚动到一个元素时,标题会遮盖一些内容。
function filterPath(string) {
return string
.replace(/^\//,'')
.replace(/(index|default).[a-zA-Z]{3,4}$/,'')
.replace(/\/$/,'');
}
var locationPath = filterPath(location.pathname);
var scrollElem = scrollableElement('html', 'body');
$('a[href*=#]').each(function() {
var thisPath = filterPath(this.pathname) || locationPath;
if ( locationPath == thisPath
&& (location.hostname == this.hostname || !this.hostname)
&& this.hash.replace(/#/,'') ) {
var $target = $(this.hash), target = this.hash;
if (target) {
var targetOffset = $target.offset().top;
$(this).click(function(event) {
event.preventDefault();
$(scrollElem).animate({scrollTop: targetOffset}, 700, function() {
location.hash = target;
});
});
}
}
});
// use the first element that is "scrollable"
function scrollableElement(els) {
for (var i = 0, argLength = arguments.length; i <argLength; i++) {
var el = arguments[i],
$scrollElement = $(el);
if ($scrollElement.scrollTop()> 0) {
return el;
} else {
$scrollElement.scrollTop(1);
var isScrollable = $scrollElement.scrollTop()> 0;
$scrollElement.scrollTop(0);
if (isScrollable) {
return el;
}
}
}
return [];
}
答案 0 :(得分:0)
你应该改变:
var targetOffset = $target.offset().top;
到
var targetOffset = $target.offset().top - 80;
或者更好
var targetOffset = $target.offset().top - $('#your-header-id').outerHeight();
如果你改变标题的高度,这应该可以做到并且更加健壮。
修改强>
要解决您的问题,您应该将每个部分的ID更改为section-about
/ section-services
/等等。然后您必须更换字符串:
var targetId = $target.attr('id').replace('#','#section-');
var targetOffset = $(targetId).offset().top - 80;
目前 $target
将是网址中的哈希值,因此#about
。上面的代码只会将#
替换为#section-
。然后,您可以像往常一样offset()
获得$('#section-about')
的最高{{1}}。