问题最明显在小提琴JsFiddle
中图像叠加设置为margin-top:-100%;但它不适用于超过300x300的物品。
我试过使用jquery如下:
$(window).load(function () {
$(".overlay").each(function () {
var $parentHeight = $(".overlay").parent().height();
$(".overlay").css("margin-top", -$parentHeight);
});
});
结果相同。
答案 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/