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

如何使用 CSS 創建完全彎曲的六邊形?

DDD
發布: 2024-12-02 13:22:10
原創
252 人瀏覽過

How Can I Create a Fully Curved Hexagon Using CSS?

使用CSS 彎曲六邊形的邊緣

提供的CSS 程式碼成功創建了四個邊為圓角的六邊形,但是,頂部和底部邊緣保持平坦。要實現完全彎曲的六邊形,需要進行調整。

原始CSS:

#hexagon-circle {
    width: 100px;
    height: 55px;
    background: red;
    position: relative;
    border-radius: 10px;
}

#hexagon-circle:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 29px solid red;
    border-radius: 10px;
}

#hexagon-circle:after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 29px solid red;
    border-radius: 10px;
}
登入後複製

解:

到底部邊緣,可以使用以下CSS添加:

.curved-hexagon {
  position: relative;
  width: 100px;
  height: 55px;
  background: red;
  border-radius: 10px 10px 0 0 / 10px 10px 29px 29px;
}

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

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

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

在此修改後的CSS中:

  • 更新了 border-radius 屬性以指定頂部和底部邊緣上的曲線。
  • 偽元素上的轉換屬性被刪除,因為不再需要它。

這將導致所有邊緣都是彎曲的六邊形,包括頂部和底部邊緣。

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

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