我怎样才能使当您向下滚动页面时,下一个 DIV 会在上一个 DIV 之上淡入淡出?
我已经设置了这个小提琴来更好地说明它:http: //jsfiddle.net/meEf4/176/
例如,如果你在页面的中间,背景是蓝色的。
编辑:这是 jsFiddle 的内容,以防万一发生爆炸并且有人遇到类似问题。
<style>
html, body, #red, #green, #blue { height: 100%}
#container { height: 300%}
#red, #green, #blue {
position: fixed;
top: 0;
width: 100%;
}
#red { background:red; z-index: 5}
#blue { background:blue; z-index: 4}
#green { background:green; z-index: 3}
</style>
<div id="container">
<div id="red"></div>
<div id="blue"></div>
<div id="green"></div>
</div>