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

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

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") 实际需要变换位置的元素




转载于:https://my.oschina.net/u/232595/blog/497110

你可能感兴趣的:(元素随滚动条位置变动而发生位置变化(从固定浏览器位置到固定网页位置)...)