这应该是一个非常基本的问题,但是我早上大部分时间都在扔它,而且此时我已经接近了。我甚至没有一点js foo - 但我找到了一个很好的评论代码块,我希望用它来动画锚链接:
$(document).ready(function() {
$('a[href*=#]').bind('click', function(e) {
e.preventDefault(); //prevent the "normal" behaviour which would be a "hard" jump
var target = $(this).attr("href"); //Get the target
var scrollToPosition = $(target).offset().top;
// perform animated scrolling by getting top-position of target-element and set it as scroll target
$('html, body').stop().animate({ scrollTop: scrollToPosition}, 600, function() {
location.hash = target; //attach the hash (#jumptarget) to the pageurl
});
return false;
});
});
我试图让它落在偏移量()上方30px。顶部 - 我试过
$('html, body').stop().animate({ scrollTop: scrollToPosition -30}, 600,
哪个几乎有用 - 它会到达正确的位置然后反弹回来。
我也试过
scrollTop: $(target).offset().top - 20 },
我也试过
scrollTop: $(hash).offset().top + $('#access').outerHeight()
似乎没有任何改变。
似乎答案可能就在这里:JQuery page scroll issue with fixed header但我似乎无法得到它。
我知道这与其他问题类似 - 但我已经找到了我能找到的东西,而且我已经文盲了,以至于我无法复制/粘贴任何修复问题的东西。
我非常感谢解决方案。
非常感谢,
马丁
PS
我找到的另一块代码确实有用,但它正在剥离标签,这使得它几乎没用。
$(function(){
$('a[href*=#]').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
&& location.hostname == this.hostname) {
var $target = $(this.hash);
$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
if ($target.length) {
var targetOffset = $target.offset().top;
$('html,body').animate({scrollTop: targetOffset - 30}, 1000);
return false;
}
}
});
});
答案 0 :(得分:16)
<强>编辑:强>
您只需要检测固定标头的高度,然后从正确执行的scrollToPosition
中减去该高度。问题是window.location.hash = "" + target;
将页面跳转到具有该ID的元素的顶部。因此,如果你像那样在那里制作动画然后更改为那个哈希,它会像你描述的那样“反弹”。这是我们解决这个问题的第一种方式:
// Get the height of the header
var headerHeight = $("div#header").height();
// Attach the click event
$('a[href*=#]').bind("click", function(e) {
e.preventDefault();
var target = $(this).attr("href"); //Get the target
var scrollToPosition = $(target).offset().top - headerHeight;
$('html').animate({ 'scrollTop': scrollToPosition }, 600, function(){
window.location.hash = "" + target;
// This hash change will jump the page to the top of the div with the same id
// so we need to force the page to back to the end of the animation
$('html').animate({ 'scrollTop': scrollToPosition }, 0);
});
$('body').append("called");
});
这是第一种方法的新 jsfiddle:http://jsfiddle.net/yjcRv/1/
进一步编辑: 控制散列更改事件的更好方法是使用类似jQuery Address的插件。有了这个,你可以更多地利用你的hashchange事件。以下是一个示例用法:
// Get the height of the header
var headerHeight = $("div#header").height();
$.address.change(function(evt){
var target = "#" + evt["pathNames"][0]; //Get the target from the event data
// If there's been some content requested go to it…else go to the top
if(evt["pathNames"][0]){
var scrollToPosition = $(target).offset().top - headerHeight;
$('html').animate({ 'scrollTop': scrollToPosition }, 600);
}else{
$('html').animate({ 'scrollTop': '0' }, 600);
}
return false;
});
// Attach the click event
$('a').bind("click", function(e) {
// Change the location
$.address.value($(this).attr("href"));
return false;
});
此处的实例:http://www.vdotgood.com/stack/user3444.html
注意:您现在不需要将哈希值添加到链接href属性。这是一个可以使用jQuery选择器定位的链接:
<!-- This is correct -->
<a href="/target" class="myclass">Target</a>
<!-- These are incorrect -->
<a href="/#/target" class="myclass">Target</a>
<a href="#/target" class="myclass">Target</a>
要定位此链接,您可以使用以下选择器:
$("a.myclass").click(function(){
$.address.value($(this).attr("href"));
return false;
});
jQuery Address确实会查找具有以下属性的链接:
<a href="/target" rel="address:/target">Target</a>
此处的rel
属性包含address:
,后跟您在此案例/target
中定义的相对网址。如果使用它,jQuery Address将检测链接并自动触发哈希更改事件。
答案 1 :(得分:7)
我知道这是一个老问题(有点)但是我遇到了类似的问题,网站上有固定的下拉导航。请注意,这是一个流畅的滚动代码片段,但您可以通过更改动画速度轻松实现自动化。
<强> jQuery的:强>
$('body').on('click','a[href^="#"]',function(event){
event.preventDefault();
var target_offset = $(this.hash).offset() ? $(this.hash).offset().top : 0;
//change this number to create the additional off set
var customoffset = 75
$('html, body').animate({scrollTop:target_offset - customoffset}, 500);
});
我已经使用了这段代码很长一段时间没有任何问题。我唯一不喜欢的是,它会抓住任何#tag。所以在像Flexslider插件这样的插件中导航使用#,我手动将它们从插件中剥离。
答案 2 :(得分:3)
我从http://www.paulund.co.uk/smooth-scroll-to-internal-links-with-jquery调整了原始脚本。它很有意思,但你不能设置延迟。
var headerHeight = $("header").height();
$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top - headerHeight
}, 1200, 'swing', function () {
window.location.hash = target ;
});
});
});
是的,我有点迟了但这个问题刚好发生在我身上...... 干杯!
答案 3 :(得分:0)
在提出问题的8年后和上次发表评论的6年之后,如果有人看到这个机会,我会问一个后续问题...
我正在使用一个Bootstrap模板,该模板使用此javascript滚动至锚点,然后折叠(先前展开的)移动菜单:
$pageScrollLink.on('click', function(e){
var anchor = $(this),
target = anchor.attr('href');
pageScroll(target);
e.preventDefault();
});
function pageScroll(target){
var ww = Math.max($window.width(), window.innerWidth),
offset = ww > 992 ? navHeightShrink : navHeight;
$htmlBody.stop().animate({
scrollTop: $(target).offset().top - (offset - 1)
}, 1000, 'easeInOutExpo');
// Automatically retract the navigation after clicking on one of the menu items.
$navbarCollapse.collapse('hide');
};
只要'href'是普通的旧“ #anchor”,就可以正常工作。但是,如果我尝试在其他文件中使用锚链接,请说“ otherfile.php#myanchor”或什至是完全限定的URL,请说“ https://somesite.com/index.php#section3”,它失败,并抛出错误抱怨“顶部”未定义或什么。
有人知道为什么只有在href是#anchor而不是其他格式时才起作用吗?
谢谢。