我正在尝试制作一个固定在页面顶部的标题,只有在用户向下滚动到页面顶部的其他内容(即我的“黑盒”div)时才会出现。如果我能让标题也能正常工作,我可能想对网站上的其他一些东西使用同样的效果,但我们会看到的。
.header{
background:yellow;
width:100%;
height:70px;
position:fixed;
top:0px;
box-shadow: 2px 5px 10px rgba(0,0,0,0.2);
z-index: 10;
}
.blackbox{
background:black;
width:100%;
height:350px;
top:60px;
overflow:hidden;
position:fixed;
z-index:3;
}
.homespace{
width:100%;
background:green;
height:700px;
position:relative;
margin-top:0px;
z-index:8;
}