頭の良い方の作ったファイルにジャンピング土下座ァアアアアアアアア!
いろんな書き方(jquery有り無しとか環境によって)に対応してくれて、いろんな値を返してくれる
プログレスバーの実装も可能じゃあぁああ!
(※IE7はうごきませんデシタけどね☆)
http://desandro.github.io/imagesloaded/
サンプルメモ(部分抽出)
[html]
$(‘body’).imagesLoaded()
.always( function( instance ) {
console.log(‘all images loaded’);
})
.done( function( instance ) {
console.log(‘all images successfully loaded’);
})
.fail( function() {
console.log(‘all images loaded, at least one is broken’);
})
.progress( function( instance, image ) {
var result = image.isLoaded ? ‘loaded’ : ‘broken’;
console.log( ‘image is ‘ + result + ‘ for ‘ + image.img.src );
i ++;
console.log( i +’/’+instance );
console.log( instance.images.length );
});
[/html]
ほかにこんなのもあるよ☆
コメントを残す