2

我有一个在页面顶部使用固定菜单的网站。

单击链接时,它应该垂直滚动,以便该目标 div 的中心与窗口的垂直中心对齐,偏移标题的高度。- 这非常重要,这样无论显示器的分辨率如何,div 都居中

我正在使用 jQuery 和 scrollTo,但无法弄清楚所需的数学运算。

这是我的尝试:

function scrollTo(target) {
var offset;
var scrollSpeed = 600;

if (viewport()["width"] > 767 && !jQuery.browser.mobile) {
    // Offset anchor location and offset navigation bar if navigation is fixed
    offset = $(target).offset().top - document.getElementById('navigation').clientHeight;
} else {
    // Offset anchor location only since navigation bar is now static
    offset = $(target).offset().top;
}

    $('html, body').animate({scrollTop:offset}, scrollSpeed);
}
4

2 回答 2

0

最终想通了。只是在数学上很愚蠢。固定页眉和页脚的偏移量也适用于所有分辨率。

    // scrollTo: Smooth scrolls to target id
function scrollTo(target) {
    var offset;
    var scrollSpeed = 600;
        var wheight = $(window).height();
        //var targetname = target;
        //var windowheight = $(window).height();
        //var pagecenterH = windowheight/2;
        //var targetheight = document.getElementById(targetname).offsetHeight;

    if (viewport()["width"] > 767 && !jQuery.browser.mobile) {
        // Offset anchor location and offset navigation bar if navigation is fixed
        //offset = $(target).offset().top - document.getElementById('navigation').clientHeight;
                offset = $(target).offset().top - $(window).height() / 2 + document.getElementById('navigation').clientHeight + document.getElementById('footer').clientHeight;
    } else {
        // Offset anchor location only since navigation bar is now static
        offset = $(target).offset().top;
    }

    $('html, body').animate({scrollTop:offset}, scrollSpeed);
}
于 2012-06-05T03:10:32.237 回答
-1

我做了一个简单的jquery。我认为这可能有助于你正在寻找什么。

请看演示

目标div保持垂直居中偏移标题。

于 2012-06-05T00:33:48.383 回答