js应用例子——滚动固定

Posted FTHeD

tags:

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

 


<style type="text/css">

*{ margin:0px auto; padding:0px;}
#wai{ width:100%; height:3000px;}
#head{ width:100%; height:200px; background-color:#C30;}
#dhl{ width:100%; height:150px; background-color:#00C;}
#neirong{ width:100%; height:2000px;}
.a{ width:100px; height:200px; background-color:#0FF; margin-top:30px;}
</style>

<div id="wai">
<div id="head"></div>
<div id="dhl"></div>
<div id="neirong">
<div class="a"></div>
<div class="a"></div>
<div class="a"></div>
<div class="a"></div>
<div class="a"></div>
<div class="a"></div>
<div class="a"></div>
<div class="a"></div>
<div class="a"></div>
</div>
</div>

<script>

//这里用到的window.onscroll 是网页滚动监听, scrollY是网页下拉是滚动的长度,用alert输出是不带px的数值;


window.onscroll = function(){
if(window.scrollY>200){
  var dhl = document.getElementById("dhl");
  dhl.style.position = "fixed";
  dhl.style.top = "0px";
  } else{
  dhl.style.position="";
}
}
</script>

 































以上是关于js应用例子——滚动固定的主要内容,如果未能解决你的问题,请参考以下文章

怎么用js固定某个元素,让它不随页面的滚动而滚动,始终固定在窗口的某个位置?

UITableView - 如何在用户滚动时保持表格行固定

DIV滚动到顶部或者固定高度悬浮

JS 实现DIV 滚动至顶部后固定

JS实例之滚动固定效果,实现顶部菜单固定效果。

js-滚动到指定位置导航栏固定顶部