我使用以下代码滚动到jQuery的锚点:
$(document).ready(function() { 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},400,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 []; } });
有没有把它滚动到该锚点,但减去一定量的像素? (在我的情况下,我想要它去-92px)
感谢任何帮助。
解决方法
我只是自己解决这个问题。您需要根据要滚动的像素数调整偏移量。在我的情况下,我需要它在页面上高50像素。所以,我从targetOffset中减去50。
现在,代码的一部分是为你摆放一个摆动的地方是location.hash – 这是告诉浏览器将它的位置设置到一个特定的点。在所有情况下,这是一个包含刚刚滚动的ID的字符串。所以,它会像’#foo’这样的东西。你需要保持这个,所以我们会离开它。
但是,为了防止浏览器在设置location.hash(“默认浏览器操作”)时“跳”,您只需要防止默认操作。所以,通过动画功能的完成功能传递你的事件’e’。然后简单地调用e.preventDefault()。你必须确保浏览器实际上是调用一个事件,否则会出错。所以,一个if-test修复了。
if (target) { var targetOffset = $target.offset().top - 50; $(this).click(function(event) { if(event != 'undefined') { event.preventDefault();} $(scrollElem).animate({scrollTop: targetOffset},function(e) { e.preventDefault(); location.hash = target; }); }); }