1

我目前正在尝试编写一个小 js。我的导航有一个渐变设置为背景。当我向下滚动一定量时,我希望背景的高度从渐变变为不透明度为 0.85(动画)的平面颜色。

这是我的js代码

$(window).scroll(function(){
if  ($(window).scrollTop() >= 600){
     $('#navigation').css({height: '92px'});
} else {
     $('#navigation').css({height: '142px'});
    }
});     

这是CSS

#navigation {

height: 142px;
width: 1350px;
position: fixed;
z-index: 2000;

background: -moz-linear-gradient(top,  rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.75)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0.75) 0%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(0,0,0,0.75) 0%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(0,0,0,0.75) 0%,rgba(0,0,0,0) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(0,0,0,0.75) 0%,rgba(0,0,0,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */

}

希望可以有人帮帮我

4

1 回答 1

2

你的代码很好!!

只需创建两个单独的类并在'else'中替换你的$('#navigation').css({height: '92px'});$('#navigation').addClass("flatColored");$('#navigation').removeClass("flatColored");

而不是#navigation{ ...}在你的CSS中,使用.gradientColored{...} .flatcolored{...}

并在您的 html 中:<div id="navigation" class="gradientColored">...</div>

覆盖background'flatColored 类中的属性。

根据您的代码在 chrome 上进行了测试。工作正常 !

于 2013-05-15T15:37:12.970 回答