码迷,mamicode.com
首页 > 其他好文 > 详细

不管页面内容是不是占满一屏,footer都保持在最底部

时间:2017-07-28 18:23:12      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:otto   round   bottom   lan   java   function   页面   lang   ext   

直接上代码:

<style>
*{ margin:0; padding:0}
#container{background:#33CCFF}
#footer{background:#FFCC00;width:100%;}
</style>
<div id="container"> 5416416410</div>
<div id="footer">bottom</div>
<script language="JavaScript" type="text/javascript">
function test(){
var infoHeight = document.getElementById("container").scrollHeight;
var bottomHeight = document.getElementById("footer").scrollHeight;
var allHeight = document.documentElement.clientHeight;

var bottom = document.getElementById("footer");
if((infoHeight + bottomHeight) < allHeight){
bottom.style.position = "absolute";
bottom.style.bottom = "0";
}else{
bottom.style.position = "";
bottom.style.bottom = "";
}

setTimeout(function(){test();},10);
}
test();
</script>

不管页面内容是不是占满一屏,footer都保持在最底部

标签:otto   round   bottom   lan   java   function   页面   lang   ext   

原文地址:http://www.cnblogs.com/oldZhangFeng/p/7251642.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!