首頁 > web前端 > css教學 > 如何用 CSS 創造一個完全彎曲的六邊形?

如何用 CSS 創造一個完全彎曲的六邊形?

Susan Sarandon
發布: 2024-12-04 07:55:12
原創
365 人瀏覽過

How to Create a Fully Curved Hexagon with CSS?

如何使用CSS 創建均勻彎曲的六邊形

您提供的CSS 有效地彎曲了六邊形的四個邊,留下頂部和底部直的。如果您想要完全彎曲的六邊形,可以進行以下修改:

在CSS 程式碼中,請變更以下內容:

#hexagon-circle:before,
#hexagon-circle:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: '';
}
登入後複製

並加入以下內容:

.hex {
  position: relative;
  margin: 1em auto;
  width: 10em;
  height: 17.32em;
  border-radius: 1em/.5em;
  background: orange;
  transition: opacity .5s;
}

.hex:before,
.hex:after {
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background: inherit;
  content: '';
}

.hex:before {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.hex:after {
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
登入後複製

這個新程式碼產生一個六邊形,其所有側面(包括頂部和底部)都具有平滑彎曲的邊緣。

以上是如何用 CSS 創造一個完全彎曲的六邊形?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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