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

解决底部问题

时间:2014-11-14 10:31:18      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   java   div   on   问题   cti   bs   

<script type="text/javascript">
// Window load event used just in case window height is dependant upon images
$(window).bind("load", function() {
var footerHeight = 0,
footerTop = 0,
$footer = $(".copy");
positionFooter();
//定义positionFooter function
function positionFooter() {
//取到div#footer高度
footerHeight = $footer.height();
//div#footer离屏幕顶部的距离
footerTop = ($(window).scrollTop()+$(window).height()-footerHeight)+"px";
//如果页面内容高度小于屏幕高度,.copy将绝对定位到屏幕底部,否则.copy保留它的正常静态定位
if ( ($(document.body).height()+footerHeight) < $(window).height()) {
$footer.css({
position: "absolute"
}).stop().animate({
top: footerTop
});
} else {
$footer.css({
position: "static"
});
}
}
$(window).scroll(positionFooter).resize(positionFooter);
});
</script>

解决底部问题

标签:io   ar   os   java   div   on   问题   cti   bs   

原文地址:http://www.cnblogs.com/shen119/p/4096448.html

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