顶部固顶导航菜单代码css+js
Posted 紫翌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了顶部固顶导航菜单代码css+js相关的知识,希望对你有一定的参考价值。
<head>
<link href="css/inside.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.7.1.min.js"></script>
</head>
<body>
<div id="subNav">
/
/
/
</div>
<script>
$(window).scroll(function(){
$("#subNav").addClass("fixedSubNav");
});
</script>
</body>
<----------------------------------------------------------------->
inside.css:
#subNav{
width:100%;
height:80px;
background-color:#000;
margin-bottom:40px;<!--距离底部的距离-->
}
.fixedSubNav{
position:fixed;
top:0;
left:0;
z-index:1000;
}
以上是关于顶部固顶导航菜单代码css+js的主要内容,如果未能解决你的问题,请参考以下文章