滚动之固定顶部
Posted yangyangxxb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了滚动之固定顶部相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
*{margin: 0;padding: 0;}
html,body{height: 3000px}
#box{
width: 100%;
height: 100px;
background: red;
position: fixed;
top: 300px;
text-align: center;
line-height: 100px;
}
</style>
</head>
<body>
<div id="box">横条</div>
</body>
</html>
<script type="text/javascript">
var b=document.getElementById("box");
window.onscroll=function(){
var sTop=document.documentElement.scrollTop||document.body.scrollTop;
if(sTop>300){
box.style.top=0;
}else{
box.style.top=parseInt(300-sTop)+"px";
}
}
</script>
以上是关于滚动之固定顶部的主要内容,如果未能解决你的问题,请参考以下文章