码迷,mamicode.com
首页 > Web开发 > 详细

元素随滚动条位置变动而发生位置变化(从固定浏览器位置到固定网页位置)

时间:2015-08-26 07:12:25      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

var clientHeight = $(window).height(); window.onscroll = function(){ var top = document.getElementsByClassName("bottom")[0].getBoundingClientRect().top; console.log(top); if(top < clientHeight){ $("div.go_crash").css("position", "relative");
    }else{ if($("div.go_crash").css("position") == "relative"){ $("div.go_crash").css("position", "fixed");
        }
    }
};


document.getElementsByClassName("bottom")需要做判断的元素


$("div.go_crash") 实际需要变换位置的元素




元素随滚动条位置变动而发生位置变化(从固定浏览器位置到固定网页位置)

标签:

原文地址:http://my.oschina.net/u/232595/blog/497110

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