imagesLoaded插件

imagesLoaded插件是一个在图片加载成功后才做一系列操作

官方网站:https://github.com/desandro/imagesloaded/

使用语法:

$(selector).imagesLoaded( [ callback ] );

 ImagesLoaded可以呼吁一个元素中的图像,图像直接,或两者的结合。

selector选择器支持:

1.直接为图片

2.内嵌图片

3.两者综合使用

官方例子:

// Calling on an element that may contain images
$('#content').imagesLoaded(fn);

// Calling on image elements directly
$('img').imagesLoaded(fn);

// Combination of both
$('#content, #gallery > img').imagesLoaded(fn);

 callback可以是一个函数也可以是一个map

callback为一个函数

该函数接受3个参数

  • $images: Object jQuery object with all images 所有的图片
  • $proper: Object jQuery object with properly loaded images  加载成功的图片
  • $broken: Object jQuery object with broken images 加载失败的图片

官方例子:

$('#my-container, .article img').imagesLoaded( function( $images, $proper, $broken ) {
    console.log( $images.length + ' images total have been loaded' );
    console.log( $proper.length + ' properly loaded images' );
    console.log( $broken.length + ' broken images' );
});

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值