I want to get the effect similar to google images, where when we mouseover on any image then the image pops and comes in front without affecting the original positions of other images. Also this only happens when the cursor is static not when we are randomly moving it.
I tried to zoom the image but other images are losing their original positions. My code goes as-->
$("img").mouseover(function(){
$(this).css("cursor","pointer")
$(this).animate({zoom: '107%'}, 'fast')
}).mouseout(function(){
$(this).animate({zoom: '100%'}, 'fast')
});