javascript平时小例子⑧(导航置顶效果)

Posted w宇小白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript平时小例子⑧(导航置顶效果)相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">

*{
margin: 0;padding: 0;
}
.wrap{
width: 100%;
height: 300px;
position: relative;
}
.wrap .top{
width:80%;
margin:0 auto;
height: 250px;
background: red;
}
.wrap .bottom{
width:80%;
margin:0 auto;
height: 50px;
background: blue;
}
.wrap .fix{
position: fixed;
top: 0;
left: 10%;
}
</style>
</head>
<body>
<div id="wrap" class="wrap">
<div id="top" class="top"></div>
<div id="bottom" class="bottom"></div>
</div>
<div style="height: 2000px;width: 100%;"></div>
<script>
var wrap,tops,bottom;
window.onload=function(){
wrap=document.getElementById("wrap");
tops=document.getElementById("top");
bottom=document.getElementById("bottom");
document.onscroll=function(){
var scroll=document.body.scrollTop||document.documentElement.scrollTop;
if(scroll>=tops.offsetHeight){
bottom.classList.add("fix");
}
else{
bottom.classList.remove("fix");
}
}
}
</script>
</body>
</html>



























































以上是关于javascript平时小例子⑧(导航置顶效果)的主要内容,如果未能解决你的问题,请参考以下文章

CSSCSS 背景设置 ⑧ ( 背景设置案例 | 导航栏按钮 )

实现滚轮监听,导航栏置顶的效果。

javascript平时小例子④(setInterval使用2)

javascript平时小例子①(移动的小div)

javascript平时小例子③(setInterval使用1)

javascript平时小例子⑦(鼠标跟随的div)