首页 > 代码库 > jQuery判断背景图片全部加载完成。。
jQuery判断背景图片全部加载完成。。
/*var path="http://static.fzbm.com/bmcj/zmjstatic/images/"; var arr=[ //path+‘img_01.png‘, "http://static.fzbm.com/bmcj/zmjpc/images/header_bag.jpg", path+‘img_02.png‘, path+‘img_03.png‘, path+‘img_04.png‘, path+‘img_05.png‘, path+‘img_06.png‘, path+‘img_07.jpg‘, path+‘img_08.jpg‘, path+‘img_09.png‘ ];*/ //存放图片 var f={}; //存放成功加载图片数量 var ImgArr=[]; $(".Imgbg").each(function(i){ var _this=$(this); $(this).attr("data-cover",arr[i]); f[i]=new Image(); f[i].src=$(this).data("cover"); $(f[i]).load(function(){ _this.css({ "background-image":"url("+_this.data(‘cover‘)+")" }) ImgArr.push(f[i]); hasEnd() }) }); function hasEnd(){ if(ImgArr.length===$(".Imgbg").length){
//当图片都加载完成后执行的方法 init(); } }
jQuery判断背景图片全部加载完成。。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。