图像叠加“margin-top”无法正确显示不同的图像高度

时间:2016-05-15 12:04:03

标签: jquery html css height margin

问题最明显在小提琴JsFiddle

图像叠加设置为margin-top:-100%;但它不适用于超过300x300的物品。

我试过使用jquery如下:

$(window).load(function () {
        $(".overlay").each(function () {
            var $parentHeight = $(".overlay").parent().height();

            $(".overlay").css("margin-top", -$parentHeight);
        });
    });

结果相同。

1 个答案:

答案 0 :(得分:0)

你应该使用top:0而不是margin-top:-100%;

.overlay {
  width: 100%;
  height: 100%;
  background-color: red;
  opacity: 0;
  z-index: 1;
  -webkit-transition: .2s all;
  position: absolute;
  top:0;
}

我对你的风格进行了编辑,请点击此处:https://jsfiddle.net/IA7medd/ngmpm5x0/