固定导航栏案例

Posted tutu3518

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了固定导航栏案例相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
* {
margin: 0;
padding: 0
}

img {
vertical-align: top;
}

.main {
margin: 10px auto 0;
width: 1000px;
}

.fixed {
position: fixed;
top: 0;
left: 0;
}
</style>

<script src="../jquery-1.12.4.js"></script>
<script>
$(function () {

$(window).scroll(function () {
//判断卷去的高度超过topPart的高度
//1. 让navBar有固定定位
//2. 让mainPart有一个marginTop
if($(window).scrollTop() >= $(".top").height() ){
$(".nav").addClass("fixed");
$(".main").css("marginTop",$(".nav").height()+10);
}else {
$(".nav").removeClass("fixed");
$(".main").css("marginTop", 10);
}

});

});
</script>

</head>
<body>
<div class="top" id="topPart">
<img src="images/top.png" />
</div>
<div class="nav" id="navBar">
<img src="images/nav.png" />
</div>
<div class="main" id="mainPart">
<img src="images/main.png" />
</div>
</body>
</html>

 

技术图片

 

以上是关于固定导航栏案例的主要内容,如果未能解决你的问题,请参考以下文章

固定导航栏案例

小程序自定义导航栏仿原生固定在顶部

怎么将导航栏始终固定在窗口顶部?

可放置元素首选项(固定导航栏)

Bootstrap 4 固定顶部导航和固定侧边栏

React实现顶部固定滑动式导航栏(导航条下拉一定像素时显示原导航栏样式)