按照可视区域加载图片

来源:互联网 发布:汽车美容维修软件 编辑:程序博客网 时间:2024/05/17 02:13
$(window).scroll(function(){
$('img').each(function(){
if($(this).attr("src") == ""){
if(($(this).offset().top +$(this).wisth()/2) < ($(window).height()+$(window).scrollTop())){
$(this).attr("src", $(this).attr("x-src"));
}
}
});
});
0 0
原创粉丝点击