ユーザーが画像をホバーすると画像を拡大し、ホバーアウトすると元の高さと幅に戻ろうとしています。画像サイズを希望の値に拡大するのに苦労しています。ホーミングすると画像が極端に大きくなるようです。私が何を間違えたのかわからない。助けてくれてありがとう。
$('#image_layout').on({
mouseenter: function() {
var $this=$(this);
console.log($this.height());
$(this).css("z-index", 1).animate({
height: "120%",
width: "120%"
}, "fast");
$(this).after('hfdsuhods');
},
mouseleave: function() {
$(this).css("z-index", 0).animate({
height: "100%",
width: "100%"
}, "fast");
}
}, "img");
//images are from ajax call and the sizes are varies.
<div id='image_layout'>
<img src='a.jpg' />
<img src='b.jpg' />
<img src='c.jpg' />
</div>