I'm trying to fading effect in image gallery section. It's ok but if image height is higher span does not contain the all image. Here is the page link.
And, here is my jquery code for finding image size:
// ON MOUSE OVER
$(".roll").hover(function () {
// SET OPACITY TO 70%
var height=$('.img-galeri').height();
var width =$('.img-galeri').width();
$(this).height(height);
$(this).width(width);
$(this).stop().animate({
opacity: .7
}, "slow");
},
thanks for help.