次のコードを使用して、DIVの画像を水平方向と垂直方向の中央に配置します。DIV
に指定されたプロパティはwidth
&height
、、、overflow:hidden
およびdisplay:block
です。
問題:コードがFFとIEで完全に機能しているのに、Chromeでのみ誤算されmargin-top
たmargin-left
$('.centerImage').each(function(i) {
var divH = $(this).parent().height();
var divW = $(this).parent().width();
var orgImgH = $(this).height();
var orgImgW = $(this).width();
if (orgImgH > orgImgW) {
$(this).css('width', divW);
var imgH = $(this).height();
var mTop = (divH - imgH) / 2;
$(this).css("margin-top", (mTop < 0) ? mTop : -mTop); //if margin-top value is less than 0 use as is and greater than 0 multiply by -1
} else {
$(this).css('height', divH);
var imgW = $(this).width();
var mLeft = (divW - imgW) / 2;
//alert(imgW); alert(mLeft); //chrome bug
$(this).css("margin-left", (mLeft < 0) ? mLeft : -mLeft);
}
});
何か案は?