创建一个顶部透明的弯曲 Div
尝试设计一个横跨整个宽度且高度约为500px,您在实现弯曲形状时遇到了挑战。要获得所需的形状,如所提供的图像所示,请使用以下方法:
使用剪辑路径:
在顶部或底部元素上实现剪辑路径并确保它们重叠如下:
.first, .second { display: inline-block; margin: 5px; } .first .top { clip-path: circle(72.9% at 50% 27%); height: 200px; width: 200px; background: url(https://picsum.photos/id/10/800/800) center/cover; position: relative; } .first .bottom { margin-top: -70px; background: yellow; height: 100px; width: 200px; } .second .top { height: 200px; width: 200px; background: url(https://picsum.photos/id/10/800/800) center/cover; position: relative; } .second .bottom { clip-path: polygon(0 25%, 14% 41%, 28% 51%, 49% 54%, 66% 53%, 79% 48%, 89% 39%, 100% 27%, 100% 100%, 47% 100%, 0% 100%); margin-top: -70px; background: yellow; height: 100px; width: 200px; }
<div class="first"> <div class="top"> </div> <div class="bottom"> </div> </div> <div class="second"> <div class="top"> </div> <div class="bottom"> </div> </div>
以上是如何使用剪辑路径创建顶部透明的弯曲 Div?的详细内容。更多信息请关注PHP中文网其他相关文章!