国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

css實戰#用css畫一個中國結

Yi_Zhi_Yu / 2192人閱讀

大家好!
今天跟大家分享一個用 css 畫中國結的教程。
最終效果如下:

大家如果感興趣可以參考我的源碼:gitHub地址

首先,我們定義好畫中國結需要的結構:

然后開始寫樣式,讓中國結居中顯示:

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

設置裝中國結的容器樣式:

.knot {
  box-sizing: border-box;
  font-size: 100px;
  width: 2em;
  height: 1.6em;
  background: skyblue;
  display: flex;
  align-items: center;
  justify-content: center;
}

我把中國結的基礎樣式拆分成4個長方形,首先來定義長方形的基礎樣式:

.box {
  position: absolute;
  box-sizing: border-box;
  width: 1em;
  height: 0.4em;
  border: var(--b) solid firebrick;
  --b: 0.1em;
}

然后我們來調整每一個長方形的樣式,把它們組合成結的基礎樣子:

.knot .box:nth-child(1) {
  transform: rotate(45deg) translate(-15%, -38%);
  border-radius: 20% 0% 0% 20% / 50% 0 0 50%;
}

.knot .box:nth-child(2) {
  transform: rotate(45deg) translate(15%, 37%);
  border-radius: 0% 20% 20% 0% / 0% 50% 50% 0%;
}

.knot .box:nth-child(3) {
  transform: rotate(-45deg) translate(15%, -38%);
  border-radius: 0% 20% 20% 0% / 0% 50% 50% 0%;
}

.knot .box:nth-child(4) {
  transform: rotate(-45deg) translate(-15%, 37%);
  border-radius: 20% 0% 0% 20% / 50% 0 0 50%;
}

最后,我們利用第一個和第二個長方形的偽元素來畫出余下的那兩個小圓圈:

.knot .box:nth-child(1)::after {
  box-sizing: border-box;
  content: "";
  position: absolute;
  width: 0.4em;
  height: 0.4em;
  border: var(--b) solid firebrick;
  border-radius: 50% 50% 50% 0%;
  top: -0.4em;
  right: -0.4em;
}

.knot .box:nth-child(2)::after {
  box-sizing: border-box;
  content: "";
  position: absolute;
  width: 0.4em;
  height: 0.4em;
  border: var(--b) solid firebrick;
  border-radius: 50% 0% 50% 50%;
  top: 0.2em;
  right: 0.8em;
}

大功告成!

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/113907.html

相關文章

  • css實戰#css一個國結

    大家好!今天跟大家分享一個用 css 畫中國結的教程。最終效果如下: showImg(https://segmentfault.com/img/bVbgz00?w=396&h=320); 大家如果感興趣可以參考我的源碼:gitHub地址 首先,我們定義好畫中國結需要的結構: 然后開始寫樣式,讓中國結居中顯示: body { margin: 0; ...

    xeblog 評論0 收藏0
  • 前端每日實戰:155# 視頻演示如何CSS 創作一只熱氣球

    摘要:效果預覽按下右側的點擊預覽按鈕可以在當前頁面預覽,點擊鏈接可以全屏預覽。源代碼下載每日前端實戰系列的全部源代碼請從下載代碼解讀定義,容器中有個子元素,代表傘蓋,代表吊籃居中顯示定義容器的尺寸,子元素和縱向居中布局先畫傘蓋。 showImg(https://segmentfault.com/img/bVbh6vq?w=400&h=300); 效果預覽 按下右側的點擊預覽按鈕可以在當前頁面...

    2bdenny 評論0 收藏0
  • 前端每日實戰:155# 視頻演示如何CSS 創作一只熱氣球

    摘要:效果預覽按下右側的點擊預覽按鈕可以在當前頁面預覽,點擊鏈接可以全屏預覽。源代碼下載每日前端實戰系列的全部源代碼請從下載代碼解讀定義,容器中有個子元素,代表傘蓋,代表吊籃居中顯示定義容器的尺寸,子元素和縱向居中布局先畫傘蓋。 showImg(https://segmentfault.com/img/bVbh6vq?w=400&h=300); 效果預覽 按下右側的點擊預覽按鈕可以在當前頁面...

    KavenFan 評論0 收藏0

發表評論

0條評論

Yi_Zhi_Yu

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<