画像を含む div と、周囲にいくつかの他の div があります。今、画像を少しアニメーション化していますが、その下のコンテンツがずれています。それを修正する方法はありますか?
ここに私がやったことのデモがあります。下のdivに影響を与えずにモバイル画像をズームしたい。
その効果のために私が使用しているjavascriptは次のとおりです:-
<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>