大家好!
今天跟大家分享一個用 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 畫中國結的教程。最終效果如下: showImg(https://segmentfault.com/img/bVbgz00?w=396&h=320); 大家如果感興趣可以參考我的源碼:gitHub地址 首先,我們定義好畫中國結需要的結構: 然后開始寫樣式,讓中國結居中顯示: body { margin: 0; ...
摘要:效果預覽按下右側的點擊預覽按鈕可以在當前頁面預覽,點擊鏈接可以全屏預覽。源代碼下載每日前端實戰系列的全部源代碼請從下載代碼解讀定義,容器中有個子元素,代表傘蓋,代表吊籃居中顯示定義容器的尺寸,子元素和縱向居中布局先畫傘蓋。 showImg(https://segmentfault.com/img/bVbh6vq?w=400&h=300); 效果預覽 按下右側的點擊預覽按鈕可以在當前頁面...
摘要:效果預覽按下右側的點擊預覽按鈕可以在當前頁面預覽,點擊鏈接可以全屏預覽。源代碼下載每日前端實戰系列的全部源代碼請從下載代碼解讀定義,容器中有個子元素,代表傘蓋,代表吊籃居中顯示定義容器的尺寸,子元素和縱向居中布局先畫傘蓋。 showImg(https://segmentfault.com/img/bVbh6vq?w=400&h=300); 效果預覽 按下右側的點擊預覽按鈕可以在當前頁面...
閱讀 3241·2021-11-22 12:07
閱讀 1882·2021-10-12 10:11
閱讀 1046·2019-08-30 15:44
閱讀 2943·2019-08-30 12:45
閱讀 2193·2019-08-29 16:41
閱讀 1641·2019-08-29 16:35
閱讀 2629·2019-08-29 12:57
閱讀 1153·2019-08-26 13:51