Lid |
|
ok heb het gevonden.
bedankt!! dit was niet de fout Lemoinet, want had de originele code gebruikt.
soit, maakt ook niet uit. der stond nog een fout in nl:(zie in tekst aangeduidt)
EDIT:
kan iemand even naar de site kijken en bovenaan rechts album 2 kiezen.
zijn bij jullie de images ook heel uit proportie????? volgens mij wordt de img gecached en alles wat ik ook doe om die caching af te zetten mislukt... kan iemand mij helpen? want dat die foto's er ZO op komen is nie echt de bedoeling... thanks!
function buildThumbs(){
current=1;
$('#imageWrapper').empty();
$('#loading').show();
$.get('ajax/thumbs.php?album='+album, function(data) {
var countImages = data.length;
var count = 0;
var $tContainer = $('<div/>',{
id : 'thumbsContainer',
style : 'visibility:hidden;'
})
for(var i = 0; i < countImages; ++i){
try{
var description = data[i].desc[0];
}catch(e){
description='';
}
if(description==undefined)
description='';
$('<img title="'+description+'" alt="'+data[i].alt+'" height="75" />').load(function(){
var $this = $(this);
$tContainer.append($this);
++count;
if (count==1){
/* load 1 image into container*/
$('<img id="displayed" style="display:block;" class="cursorPlus"/>').load(function(){
var $first = $(this);
$('#loading').hide();
resize($first,0);
$('#imageWrapper').append($first);
$('#description').html($this.attr('title'));
}).attr('src',$this.attr('alt'));
//alert ($this.attr('alt'));
}
//if(count == countImages){ --->>> dit hield blijkbaar het maken van de thumbs tegen bij het kiezen van een nieuw album.. //alert (count +' - '+countImages);
$('#thumbsWrapper').empty().append($tContainer);
thumbsDim($tContainer);
makeScrollable($('#thumbsWrapper'),$tContainer,15);
// }
}).attr('src',data[i].src);
}
},'json');
}
function buildThumbs(){ current=1; $('#imageWrapper').empty(); $('#loading').show(); $.get('ajax/thumbs.php?album='+album, function(data) { var countImages = data.length; var count = 0; var $tContainer = $('<div/>',{ id : 'thumbsContainer', style : 'visibility:hidden;' }) for(var i = 0; i < countImages; ++i){ try{ var description = data[i].desc[0]; }catch(e){ description=''; } if(description==undefined) description=''; $('<img title="'+description+'" alt="'+data[i].alt+'" height="75" />').load(function(){ var $this = $(this); $tContainer.append($this); ++count; if (count==1){ /* load 1 image into container*/ $('<img id="displayed" style="display:block;" class="cursorPlus"/>').load(function(){ var $first = $(this); $('#loading').hide(); resize($first,0); $('#imageWrapper').append($first); $('#description').html($this.attr('title')); }).attr('src',$this.attr('alt')); //alert ($this.attr('alt')); } //if(count == countImages){ --->>> dit hield blijkbaar het maken van de thumbs tegen bij het kiezen van een nieuw album.. //alert (count +' - '+countImages); $('#thumbsWrapper').empty().append($tContainer); thumbsDim($tContainer); makeScrollable($('#thumbsWrapper'),$tContainer,15); // } }).attr('src',data[i].src); } },'json'); }
het werkt in elk geval.
bedankt, zonder jouw tip had ik het niet gevonden!! |