1
我想放大圖像,當用戶將我的圖像懸停時,鼠標懸停時返回到其原始高度和寬度。 我無法將圖像大小放大到我想要的值。當我懸停時,圖像變得非常大。不知道我做錯了什麼。 感謝您的幫助。簡單圖像調整問題
$('#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>