我已将顶部菜单添加为具有位置的 div:固定。它位于页面顶部,因此它涵盖了部分内容。我将布局向下移动,所以通常没关系,但是如果用户单击任何锚链接,页面将滚动到锚位于顶部的位置。但它被顶部菜单覆盖。有没有办法捕获锚事件并使用 javascript(必要时使用 jQuery)处理它?
问问题
1866 次
3 回答
2
你可以使用这样的东西:
$('a').click(function(){
$('html').scrollTop($($(this).attr('href')).position().top + menu_height_offset)
})
获取锚点位置
$($(this).attr('href')).position().top
使与固定菜单相关的偏移
menu_height_offset
移动滚动条
$('html').scrollTop()
于 2012-09-05T18:34:05.057 回答
1
您需要计算元素的偏移量并滚动到offset of element - height of the navigationbar
- 位置:
$("a").on("click",function(){
// height of the navigation bar
var height= $("#nav").outerHeight();
// position of the referenced dom-element
var pos = $($(this).attr("href")).position().top;
// scroll to the element
$("body").scrollTop(pos - height);
// suppress default
return false;
})
于 2012-09-05T18:53:16.747 回答
0
/* START --- scroll till anchor */
(function($) {
$.fn.goTo = function() {
var top_menu_height=$('#div_menu_header').height() + 5 ;
//alert ( 'top_menu_height is:' + top_menu_height );
$('html, body').animate({
scrollTop: (-1)*top_menu_height + $(this).offset().top + 'px'
}, 500);
return this; // for chaining...
}
})(jQuery);
$(document).ready(function(){
var url = document.URL, idx = url.indexOf("#") ;
var hash = idx != -1 ? url.substring(idx+1) : "";
$(window).load(function(){
// Remove the # from the hash, as different browsers may or may not include it
var anchor_to_scroll_to = location.hash.replace('#','');
if ( anchor_to_scroll_to != '' ) {
anchor_to_scroll_to = '#' + anchor_to_scroll_to ;
$(anchor_to_scroll_to).goTo();
}
});
});
/* STOP --- scroll till anchror */
于 2015-03-21T16:37:21.387 回答