Jquery图片加载插件:imagesloaded

jopen 11年前

检测图像是否已经加载。在图片加载成功后才做一系列操作。

// element  imagesLoaded( document.querySelector('#container'), function( instance ) {    console.log('all images are loaded');  });  // selector string  imagesLoaded( '#container', function() {...});  // multiple elements  var posts = document.querySelectorAll('.post');  imagesLoaded( posts, function() {...});

项目主页:http://www.open-open.com/lib/view/home/1378537245866