3

我已经浏览了这里的一些教程,但仍然无法解决我的问题,因此我发布了这个。

我想知道你是否可以告诉我如何让我的浮动共享栏@ http://www.patchworkoftips.com/blackberry-messenger-voip-voice-calls/1983/仅在用户向下滚动时显示 100px页面或文章中途。

这是我的共享栏 css:

#search_bar {
    z-index: 1000;
    position: fixed !important;
    top: 0;
    width: 1082px;
    color: #FFF;
    background: #333;
    padding-top: 1px;
    padding-bottom: 1px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

抱歉,我无法粘贴共享条码,因为它在这里一直消失。

我是使用 javascript 和 jquery 的新手,因此非常感谢复制和粘贴解决方案。

4

1 回答 1

1
$(window).on('scroll', function(){
    if($(window).scrollTop() > 100){ // The '100' can be set to what ever pixel height you want
         $('#search_bar').fadeIn('500'); // This shows the share bar
    }else{
         $('#search_bar').fadeOut('500'); // This hides the share bar
    }
});
于 2012-11-15T19:39:06.867 回答