0

当导航位置和滚动位置相等时,我想将导航位置固定在顶部。

请让我知道如何获得导航位置和页面滚动位置?我想要这样的东西:http: //new.livestream.com/live-video-tools

我试过了:

$(function() {

    // grab the initial top offset of the navigation 
    var sticky_navigation_offset_top = $('#main-heading').offset().top;

    // our function that decides weather the navigation bar should have "fixed" cs s position or not.
    var sticky_navigation = function(){
        var scroll_top = $(window).scrollTop(); // our current vertical position from the top

        // if we've scrolled more than the navigation, change its position to fixed to stick to top,
        // otherwise change it back to relative
        if(scroll_top > sticky_navigation_offset_top) { 
            $('#fixed_nav').css({ 'position': 'fixed', 'top':6, 'left':0, 'width':'100%', 'z-index':999, 'height':80,  'background':'#fff' });
        } else {
            $('#fixed_nav').css({ 'position': '','overflow': 'visible', 'display':'block','height':80}); 
        }          
    };

    // run our function on load
    sticky_navigation();

    // and run it again every time you scroll
    $(window).scroll(function() {
        sticky_navigation();
    });
});
4

1 回答 1

0

这是旧的,但应该为 Google 员工的利益提供一个答案。

请参阅此处的小提琴。

$(function () {
    var offset = $('#nav').offset().top;
    var nav = function () {
        var scroll = $(window).scrollTop();
        if (scroll < offset) {
            $('#nav').css({ 'position': 'relative' });
        }
        else {
            $('#nav').css({ 'position': 'fixed', 'top': 0 });
        }
    };
    nav();
    $(window).scroll(function () {
        nav();    //this ensures we check again every time the user scrolls
    });

});

OP-您现在可能已经弄清楚了,但是我不确定您为什么要检查偏移量#main-heading然后设置不同的位置#fixed-nav,这可能就是您的问题所在。

于 2014-04-06T02:14:04.030 回答