首頁 > web前端 > css教學 > 如何使用剪輯路徑創建頂部透明的彎曲 Div?

如何使用剪輯路徑創建頂部透明的彎曲 Div?

Susan Sarandon
發布: 2024-11-24 13:59:16
原創
1011 人瀏覽過

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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板