3

不确定该方法是什么或如何实现。但我很想知道它可能会在即将到来的项目中使用它。我指的是当块元素位于特定的 X/Y 轴时,它似乎停止充当固定位置元素,否则该元素充当固定位置元素。

我最常在导航中看到这一点,其中页眉和页脚很大,当元素到达页眉底部或页脚顶部时,元素将停止充当固定元素

4

3 回答 3

4

你可以做这样的事情,

$(window).scroll(function(){    
    if ($(this).scrollTop() > 250){ 
        $('#top').css('position','fixed'); 
    }
    else{
        $('#top').css('position','static');
    }
});

更好的方法是,

$(window).scroll(function(){    
    var top =  $('#top'); 
    if ($(this).scrollTop() > 250){
        if(top.css('position') !== 'fixed'){ 
            top.css('position','fixed'); 
        }
    }
    else{
        if(top.css('position') !== 'static'){
            top.css('position','static');
        }
    }
});
于 2012-06-06T20:33:15.153 回答
2

有一些插件可以为您做到这一点;这是我以前使用过的一个:链接相对成功。也有很好的例子。

如果你想自己做,也不是太难。这个概念有点复杂。如果您将某些内容更改positionfixed,那么它将不会占用空间,如果它是static

当我遇到这个问题时,我在同一个地方创建了第二个项目(或不创建,取决于您希望它出现的位置),它是不可见的。然后你实现一个加载/滚动事件来检查窗口scrollTop是否大于top非固定对象的坐标。如果是,则显示固定对象。

像这样的东西:

$("#yourObject").each(function() { // The ID should be the FIXED object.
    var $me = $(this);
    var $heightRival = $("#anotherObject"); // This ID should be the non-fixed object.
    $me.hide(); // Hide your fixed div.
    $(window).bind("load scroll",function() {
        var offset = $heightRival.offset(); // Get the document offset of the base object.
        var height = $heightRival.outerHeight(); // Get the height of the base object.
        if ($(window).scrollTop() > offset.top+height)
            $target.show(); // Can be a fade in, slide in, whatever.
        else
            $target.hide(); // Can be a fade out, etc.
    });
});

这只是一个基本的代码,但它应该让你走上正确的轨道。

于 2012-06-06T20:30:39.323 回答
1

看看这个插件,或者其他类似的插件:http ://www.orangecoat.com/stickyscroll

于 2012-06-06T20:26:55.170 回答