首页  >  文章  >  web前端  >  如何使用剪辑路径创建顶部透明的弯曲 Div?

如何使用剪辑路径创建顶部透明的弯曲 Div?

Susan Sarandon
Susan Sarandon原创
2024-11-24 13:59:16988浏览

How Can I Create a Curved Div with a Transparent Top Using Clip Paths?

创建一个顶部透明的弯曲 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn