0

我正在尝试使图像居中,同时保持 div 内图像的正确纵横比并将其居中。我有以下html代码:

<div class="product-large" style="position: relative; overflow: hidden;">
  <img src="/images/store_logos/c48edfde4dfb95efb42c5bb474fc249a2bc84253.jpeg" alt="" class="js-fix" style="margin-left: 0px; margin-top: 0px;">
  <img src="/images/store_logos/c48edfde4dfb95efb42c5bb474fc249a2bc84253.jpeg" class="zoomImg" style="position: absolute; top: 0px; left: -3.3157894736842106px; opacity: 0; width: 500px; height: 760px; border: none; max-width: none;">
</div>

使用以下 javascript 代码将图像居中:

$(".product-large img").each(function () {
        //get height and width (unitless) and divide by 2
        var hWide = ($(this).width()) / 2; //half the image's width
        var hTall = ($(this).height()) / 2; //half the image's height, etc.

        // attach negative and pixel for CSS rule
        hWide = '-' + hWide + 'px';
        hTall = '-' + hTall + 'px';

        $(this).addClass("js-fix").css({
            "margin-left": hWide,
                "margin-top": hTall
        });
    });
#main.product-detail .product-banner .product-large img
{
    max-width:437px;
    max-height:437px;
    width:auto;
    height:auto;
    position:absolute;
    top:50%;
    left:50%;
}

#main.product-detail .product-banner .product-large {
    background-color: #F3EFEA;
    height: 437px;
    width: 437px;
}

它在第一次加载时工作得很好,但是第二次图像位置或损坏(即:它没有正确居中)。

对于一个工作示例,您可以检查下面的链接然后刷新页面几次。您会注意到图像在第 2 次/第 3 次时未居中。知道为什么吗?

4

1 回答 1

1

如果你没有得到这个工作,我建议你使用表格单元方法使用 100% CSS 对齐。较小的 JavaScript 总是更好:) 这是如何做到这一点的 jsfiddle

http://jsfiddle.net/fMJDj/1

小提琴中的代码:

<div>
  <img src="http://explodingdog.com/drawing/awesome.jpg" />
</div>

div {
  border: 1px solid red;
  display:table-cell;
  vertical-align: middle;
  text-align: center;
  height: 800px;
  width: 800px;
}
img {
  max-width:437px;
  max-height:437px;
}
于 2013-05-03T23:50:29.580 回答