图片预加载jqurey插件

本文深入探讨了使用jQuery实现图片预加载的技术细节,包括有序和无序加载方式,以及如何在每张图片加载完毕后执行特定操作。通过具体代码示例,展示了如何监听图片加载的完成和错误事件,并在所有图片加载完成后执行回调函数。
摘要由CSDN通过智能技术生成
//图片预加载
//li*75?img[src="facce/qq/$.gif"]
(function($){
    function Preload(imgs,options){
        this.img=(typeof imgs==='string')?[imgs]:imgs
        this.options=$.extend({},Preload.DEFAULTS,options)
        if(this.options.order==='ordered'){
            this.ordered()
        }else{
            this._unoredered()
        }
    }
    Preload.DEFAULTS={
        order:'unordered',
        each:null,//每一张图片加载完毕后执行
        all:null//所有图片中加载后执行
    }
    Preload.prototype.ordered=function(){//有序加载
        var opts=this.options,
        imgs=this.imgs,
        len=imgs.length,
        count=0;
        load()
        function load(){
            var imgObj=new Image()
            $(imgObj).on('load error',function(){
                opts.each&&each(count)
                if(count>=len){
                    opts.all&&opts.all()
                }else{
                    load()
                }
                count++
        }
    }
    Preload.prototype._unoredered=function(){//无序加载
        var imgs=this.imgs
        var opts=this.options
        var count=0
        var len=imgs.length
        $.each(imgs,function(i,src){
            if(typeof src!='string')return
            var imgObj=new Image()
            $(imgObj).on('load error',function(){
               opts.each&&opts.each(count)
               if(count>=len-1){
                   opts.all&&opts.all()
               }
               count++
            })
        })
    }
    $.extend({
        Preload:function(imgs,opts){
            new Preload(imgs,opts)
        }
    })
})(jQuery)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值