1.获取滚动条上的高度:
document.documentElement.scrollTop : IE6、IE7、IE8、IE9、FF4.0、Opera
document.body.scrollTop : Chrome、Safari
2.运用时:
window.onscroll=function(){
//检测图片是否出现---图片延时加载 var image=document.getElementById("image"); var st=document.documentElement.scrollTop||document.body.scrollTop; var ch=document.documentElement.clientHeight; var ot=image.offsetTop; if(st+ch>ot){ alert("it's time"); }
}
Comments(0)