私はこのようなものを持っています
function loadImages(){
var num = 1;
$('.myElement').each(function(){
var image = $("<img>").attr("src",mySrc).load(function(){
if(num == 1){
//do something - does not work
}
});
num++;
});
}
そして、条件if(num == 1)はまったく機能しません。これは、最初の画像が読み込まれている間、each()関数が引き続き機能し、load()関数内の条件が再生されるため、var numの値が大きくなるためだと思います...どうすれば修正できますか?
どうも
全機能コード
function loadThumbs(imageCount){
var perc = 0;
var cache = [];
var thumbHolderWidth = 0;
var thumbHolderHeight = 0;
$('#thumbs').find(".image_thumb").each(function(enumThumb){
if(enumThumb == 0){
$(this).addClass('active');
}
var thisThumbSrc = $(this).find('img').attr('src');
var smallim = $("<img>").attr("src",thisThumbSrc).load(function(){
var thumbWidth = this.width;
var thumbHeight = this.height;
thumbHolderWidth = thumbHolderWidth + thumbWidth + 12;
if(thumbHeight > thumbHolderHeight){
thumbHolderHeight = thumbHeight;
}
});
cache.push(smallim);
var imgSrc = $(this).attr('bigimg');
var im = $("<img>").attr("src",imgSrc).load(function(){
if(enumThumb == 0){
imWidth = this.width;
imHeight = this.height;
resizeOverlay(imWidth,imHeight,imgSrc);
}
perc = perc + (100/imageCount);
var loaderWidth = Math.round(winWidth*perc/100);
$('#thumb_loader').stop().animate({'width':loaderWidth+'px'});
if(Math.round(perc) >= 100){
$('#thumb_loader').animate({
'height':'1px',
'margin-top':'0px'
},'fast',function(){
$('#thumb_loader').addClass('loaded');
});
}
});
cache.push(im);
});
$('#images_overlay').find('#thumbs').css({
'width':thumbHolderWidth+'px',
'height':thumbHolderHeight+10+'px',
'left':winWidth/2-thumbHolderWidth/2+'px'
})
$('#images_overlay').find('#thumbs').fadeIn();
}