I have a div with an image and several other div in surroundings. Now, I am animating the image a bit, but it displaces the content below it. Any way to fix it out ?
Here is a demo of what I have done . I wish to zoom the mobile image without affecting the lower div.
The javascript, I am using for that effect is :-
<script>
$(document).ready(function() {
$('.itemDisplay').mouseenter(function(e) {
$(this).find('.itemimgWrap').children('img').animate({ height: '135', left: '-20', top: '-20'}, 100);
}).mouseleave(function(e) {
$(this).find('.itemimgWrap').children('img').animate({ height: '120', left: '0', top: '0'}, 100);
});
});
</script>
