嘿,之前我曾经问过类似的问题并且能够实现它,那就是我必须使用png图像,缺点是它太大了。
经过一些研究后,我发现了一种使用svg容器和图像的alpha和beta通道的方法。
然而,我遇到的主要困难是使对象适合工作,因此图像将始终覆盖其整个50%的Flexbox容器......甚至可能吗?我错过了什么..非常感谢。
https://codepen.io/HendrikEng/pen/RVzYoR?editors=0100
.c-hero {
align-items: center;
display: flex;
flex-direction: row;
justify-content: center;
background: grey;
height: 30px * 15;
text-align: center;
&__image {
display: flex;
margin-bottom: -60px;
margin-top: 60px + 19px;
max-height: 682px;
min-height: calc(100% + 140px);
object-fit: cover;
object-position: top;
width: 50%;
}
&__item {
align-self: center;
width: 50%;
}
}
<section>
<div class="c-hero">
<svg class="c-hero__image" preserveAspectRatio="xMinYMin" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<mask id="transparentmask">
<image width="100%" height="100%" xlink:href="http://i.imgur.com/n080w42.png"></image>
</mask>
</defs>
<image mask="url(#transparentmask)" width="100%" height="100%" xlink:href="http://i.imgur.com/LTgnz9E.jpg"></image>
</svg>
<div class="c-hero__item">
<p>Lorem Ipsum</p>
</div>
</div>
</section>
答案 0 :(得分:6)
请将以下css放入您的codepen:
/**
* @define c-hero; weak
*/
.c-hero {
align-items: stretch;
display: flex;
flex-direction: row;
justify-content: center;
background: grey;
height: 28.45vw;
text-align: center;
&__image {
flex: 1 0 auto;
min-height: 130.96%;
}
&__item {
align-self: center;
width: 50%;
}
}
答案 1 :(得分:3)
虽然问题建议使用重叠图像,但如果我正确解释它的实际情况是并排显示图像和填充容器。要使用的图像是在其底部具有小透明度的图像。因此,虽然我们的眼睛可以区分差异,但对于浏览器而言,它只是整个图像。
由于您希望image =旁边的容器高度为图像的高度 - 透明/白色区域的高度。
实现目标的方法很少
1)使用2张单独的图像:
看起来像它重叠的部分可以是具有z-index大于背景图像元素的绝对定位的不同图像。 背景图像元素和下一个填充容器可以具有相同的高度。
2)如果我们有一个固定的图像高度,那么我们可以针对这个特殊情况使用另一半的86%的图像高度。它会产生同样的错觉。 86%,因为完全覆盖的背景是整个图像的86%。是的我用GIMP测量了像素比率。
这个特殊情况更多地与您使用的图像尺寸有关,而不是某些编程技巧。虽然你所寻求的可以实现。 为了复制我在codepen中创建了这个响应式解决方案。
.wrapper {
max-width: 1200px;
margin: 0 auto;
}
.hero-img {
background-image: url(http://i.imgur.com/CkwLRd0.jpg);
background-size: cover;
background-position: bottom;
background-repeat: no-repeat;
width: 100%;
height: 100%;
}
.banner {
display: flex;
}
.half {
width: 50%;
height: 400px;
}
.red {
background: indianred;
}
.text-holder {
height: 86%;
}
<div class="wrapper">
<div class="banner">
<div class="half">
<div class="hero-img"></div>
</div>
<div class="half">
<div class="red text-holder"></div>
</div>
</div>
</div>
请注意,由于使用了相对图像尺寸,包装器设置为max-width:1200px。
让我知道它是否解决了您的问题,或者您是否需要更多帮助。