除非你需要你的寬度和高度改變,你應該只設置一次,假設兩個圖像大小相同這應該工作
var h=$(".extend").height();
var w=$(".extend").width();
$(".extend").hover(function() {
//alert(h);
$(this).css({'z-index' : '999' });
$(this).addClass("hover").filter(":not(:animated)").stop()
.animate({
marginTop: '-110px',
marginLeft: '10px',
top: '80%',
left: '80%',
width: 387,
height: 487,
padding: '0px'
}, 200);
} , function() {
$(this).css({'z-index' : '0'});
$(this).removeClass("hover").stop()
.animate({
marginTop: '0',
marginLeft: '0',
top: '0',
left: '0',
width:w,
height:h,
padding: '0px'
}, 400);
});
FIDDLE
EDIT--
對於IMAG具有不同尺寸的ES使用。數據()
$(".extend").each(function(){
$(this).data('width', $(this).width());
$(this).data('height', $(this).height());
})
$(".extend").hover(function() {
//alert(h);
$(this).css({'z-index' : '999' });
$(this).addClass("hover").filter(":not(:animated)").stop()
.animate({
marginTop: '-110px',
marginLeft: '10px',
top: '80%',
left: '80%',
width: 387,
height: 487,
padding: '0px'
}, 200);
} , function() {
$(this).css({'z-index' : '0'});
$(this).removeClass("hover").stop()
.animate({
marginTop: '0',
marginLeft: '0',
top: '0',
left: '0',
width:$(this).data('width'),
height:$(this).data('height'),
padding: '0px'
}, 400);
});
將它們保存在所述元件
FIDDLE
EDIT -2-
解決換檔問題的簡單方法是包裹的img標籤在inline-塊元件,設置元件尺寸與圖像的然後使是絕對定位在IMG
<span><img class="extend" src="a.jpg"></span>
<span><img class="extend" src="b.jpg"></span>
$(".extend").each(function(){
$(this).data('width', $(this).width());
$(this).data('height', $(this).height());
$(this).parent().css({display:'inline-block', width: $(this).width(), height: $(this).height()})
.end().css({position:'absolute'});
})
$(".extend").hover(function() {
//alert(h);
$(this).css({'z-index' : '999' });
$(this).addClass("hover").filter(":not(:animated)").stop()
.animate({
marginTop: '-110px',
marginLeft: '10px',
top: '80%',
left: '80%',
width: 387,
height: 487,
padding: '0px'
}, 200);
} , function() {
$(this).css({'z-index' : '0'});
$(this).removeClass("hover").stop()
.animate({
marginTop: '0',
marginLeft: '0',
top: '0',
left: '0',
width:$(this).data('width'),
height:$(this).data('height'),
padding: '0px'
}, 400);
});
FIDDLE
兩個圖像大小不一 – user1397840
它可以工作,但它在圖像展開時仍然沒有解決對齊問題。圖像旁邊的元素會隨着圖像展開而移動。如何解決它?提前致謝。 – user1397840
@ user1397840看到我的編輯 – Musa