我正在尝试创建一个网站,其中加载导航栏位于标题下方并向下滚动时 - 导航栏应该显示在屏幕顶部并附加到其上,以及所有内容导航栏下面应该是它的后面。我希望它看起来像http://www.w3schools.com/css/default.asp网站的电脑屏幕。
我的例子(工作不正常):[审查]
CSS代码:
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
}
.header {
width: 100%;
height: 100px;
padding: 15px;
color: #2A5282;
background-color: #E8FF79;
position: fixed;
top: 0;
z-index: -1;
}
.nav {
width: 100%;
height: 40px;
color: white;
background: #2A5282;
position: absolute;
top: 100px;
z-index: 1;
}
.nav ul {
margin: 0;
padding: 0;
overflow: hidden;
}
.nav ul li {
list-style-type: none;
float: left;
}
.nav ul li a {
color: #E8FF79;
text-align: center;
text-decoration: none;
font: bold 16px verdana;
width: 150px;
margin: 0;
padding: 10px 0;
display: block;
}
.nav ul li a:hover {
background-color: #2B5D9C;
}
.content {
width: 100%;
padding: 0 20px;
color: black;
background-color: white;
font: bold 14px verdana;
position: absolute;
top: 140px;
z-index: 1;
}
HTML code:
<div class="header">
<h1>This is a header</h1>
</div>
<div class="nav">
<ul>
<li><a href="#">Option 1</a></li>
<li><a href="#">Option 2</a></li>
<li><a href="#">Option 3</a></li>
<li><a href="#">Option 4</a></li>
</ul>
</div>
<div class="content">
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<!-->...<-->
</div>
我试图了解w3schools网站的来源,但是有些东西我不知道,我不知道它是什么。我不想使用Bootstrap。最好的解决方案是只使用HTML和CSS。
答案 0 :(得分:2)
你可以这样做,见下面的例子:
<div id="scroller">Some controls</div>
CSS:
body {
height: 3000px;
top: 0;
position: relative;
}
#scroller {
position: relative;
top: 100px;
width: 100%;
background: #CCC;
height: 100px;
}
我们可以使用这样的javascript滚动案例:
$(window).scroll(function () {
if ($(window).scrollTop() > 100) {
$('#scroller').css('top', $(window).scrollTop());
}
}
);
有关详细信息,请参阅:demo
答案 1 :(得分:1)
在你的项目上添加js
$(function () {
$(window).scroll(function () {
if ($(this).scrollTop() > 20) {
$('.nav').addClass('nav-pin').fadeIn();
} else {
$('.nav').removeClass('nav-pin');
}
});
});
和css在下面
.nav-pin{position:fixed; top:0; left:0; z-index:9999;}
答案 2 :(得分:0)
将您的代码与评论中提供的JSFiddle Rahul S合并, this is the final code
另请注意,我从您的css的z-index
课程中删除了.content
媒体资源。