14

我有一个带有这个 CSS 属性的菜单:

#header {
  width: 100%;
  position: fixed;
  z-index: 9000;
  overflow: auto;
}

所以基于上面的 CSS 属性,这个元素 ( #header) 显然会保持在顶部而不管滚动。我想要实现的是在向上滚动和向下滚动时,应该将底部框阴影添加到该元素 ( #header) 中,并且一旦到达该元素 ( #header) 的默认位置(显然是最顶部的位置)就应该将其移除的页面。

我愿意接受任何建议和建议。

4

2 回答 2

36

$(window).scroll(function() {     
    var scroll = $(window).scrollTop();
    if (scroll > 0) {
        $("#header").addClass("active");
    }
    else {
        $("#header").removeClass("active");
    }
});
body {
    height: 2000px;
    margin: 0;
}

body > #header{position:fixed;}

#header {
    width: 100%;
    position: fixed;
    z-index:9000;
    overflow: auto;
    background: #e6e6e6;
    text-align: center;
    padding: 10px 0;
    transition: all 0.5s linear;
}

#header.active {
     box-shadow: 0 0 10px rgba(0,0,0,0.4);   
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<div id="header">HEADER</div>

JSFiddle 版本

每当页面滚动时,我们将当前与文档顶部的距离保存在变量 ( scroll) 中。

如果当前位置大于 0,我们将类添加active#header.

如果当前位置等于 0,我们删除该类。

于 2013-06-17T19:11:24.963 回答
3

创建一个名为 shadow 的类以添加到 window.scroll 上的标题 div。

http://jsfiddle.net/43aZ4/

var top = $('#header').offset().top;
  $(window).scroll(function (event) {
    var y = $(this).scrollTop(); 
    if (y >= 60) {  $('#header').addClass('shadow'); }
    else { $('#header').removeClass('shadow'); }
  });

.shadow {
    -webkit-box-shadow: 0px 10px 5px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    0px 10px 5px rgba(50, 50, 50, 0.75);
    box-shadow:         0px 10px 5px rgba(50, 50, 50, 0.75);
}
于 2013-06-17T19:13:38.997 回答