Hi I am trying to create a lightbox efect for my website and I seem to have a problem with centerint the image here is my code:
<div id="lightbox">
<img src="img/accrington-stanley.jpg" alt="Accrington Stanley" class="lightboximg"/>
</div>
jQuery.fn.center = function () {
this.css("position","absolute");
this.css("top", Math.max(0, (($(window).height() - this.outerHeight()) / 2) +
$(window).scrollTop()) + "px");
this.css("left", Math.max(0, (($(window).width() - this.outerWidth()) / 2) +
$(window).scrollLeft()) + "px");
return this;
}
var lightbox = $('div#lightbox');
var lightboximg = $('img.lightboximg');
portfolio.on("click","li" ,function(){
var curent = $(this).attr("data-id");
for(var i=0;i<arr.length;i++){
if(curent === attrValue){
for(var index in obj){
var attrName2 = index;
var attrValue2 = obj[index];
if(attrName2 === "img"){
lightboximg.attr("src" , attrValue2);
}
}
}
lightbox.center().fadeIn();
})
The source of the img.lightboximg changes on each click and thus the container width and height changes acording to the image size.The container doesn't center on the first click , but it centers on the second.The two loops are used only to change the src on img.lightboximg.
Another thing I don't understand is if I try to get the width and height of lightboximg variable it always returns 0.Why is that? Can anyone tell me what is wrong with my code and how to corect it in order to center div#lightbox?
EDIT:arr is an aray that contains a number of objects.In each object I have stored the src and other parameters
EDIT:I discoverd something very wierd while trying to make the code work.If I add an alert box in the click handler the container gets centered how is that related to anything?
alert()and useconsole.logbrowser messages, asalert()can cause known interferences. – arttronics Jul 14 '12 at 12:13