刷新页面后图像未正确定位

时间:2013-05-03 23:22:13

标签: javascript jquery html css

我试图使图像居中,同时保持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;
}

它在第一次加载时完全正常,但是第二次图像位置或断开(即:它没有正确居中)。

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

1 个答案:

答案 0 :(得分:1)

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

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;
}