最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

如何使用CSS的Grid布局實(shí)現(xiàn)小松鼠郵票的效果(附源碼)

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-02 22:08:29
文檔

如何使用CSS的Grid布局實(shí)現(xiàn)小松鼠郵票的效果(附源碼)

如何使用CSS的Grid布局實(shí)現(xiàn)小松鼠郵票的效果(附源碼):本篇文章給大家?guī)淼膬?nèi)容是關(guān)于如何使用CSS的Grid布局實(shí)現(xiàn)小松鼠郵票的效果(附源碼),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你有所幫助。效果預(yù)覽源代碼下載每日前端實(shí)戰(zhàn)系列的全部源代碼請(qǐng)從 github 下載:https://github.com/
推薦度:
導(dǎo)讀如何使用CSS的Grid布局實(shí)現(xiàn)小松鼠郵票的效果(附源碼):本篇文章給大家?guī)淼膬?nèi)容是關(guān)于如何使用CSS的Grid布局實(shí)現(xiàn)小松鼠郵票的效果(附源碼),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你有所幫助。效果預(yù)覽源代碼下載每日前端實(shí)戰(zhàn)系列的全部源代碼請(qǐng)從 github 下載:https://github.com/
本篇文章給大家?guī)淼膬?nèi)容是關(guān)于如何使用CSS的Grid布局實(shí)現(xiàn)小松鼠郵票的效果(附源碼),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你有所幫助。

效果預(yù)覽

4010007201-5ba9e599879b3_articlex.png

源代碼下載

每日前端實(shí)戰(zhàn)系列的全部源代碼請(qǐng)從 github 下載:

https://github.com/comehope/front-end-daily-challenges

代碼解讀

定義 dom,容器表示郵票:

<div class="stamp">
</div>

居中顯示:

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

設(shè)置容器尺寸:

.stamp {
 position: relative;
 width: 45em;
 height: 63em;
 font-size: 6px;
 padding: 5em;
 background-color: white;
}

用重復(fù)背景繪制出郵票的齒孔:

.stamp {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}

.stamp::after,
.stamp::before {
 content: '';
 width: 100%;
 height: 100%;
 position: absolute;
 background: 
 radial-gradient(circle, teal 50%, transparent 50%),
 radial-gradient(circle, teal 50%, transparent 50%);
 background-size: 3.5em 3.5em;
}

.stamp::before {
 top: 1.5em;
 background-repeat: repeat-y;
 background-position: -4% 0, 104% 0;
}

.stamp::after {
 left: 1.5em;
 background-repeat: repeat-x;
 background-position: 0 -3%, 0 103%;
}

在 html 文件中增加小雞的 dom 元素,子元素分別表示耳朵、頭部、身體、尾巴下部、尾巴上部、腿、爪子:

<p class="stamp">
 <p class="squirrel">
 <p class="ear"></p>
 <p class="head"></p>
 <p class="body"></p>
 <p class="tail-start"></p>
 <p class="tail-end"></p>
 <p class="leg"></p>
 <p class="foot"></p>
 </p>
</p>

設(shè)置 grid 布局的行列尺寸:

.squirrel {
 display: grid;
 grid-template-columns: 11.5em 7em 15.5em 10.5em;
 grid-template-rows: 13em 5em 11.5em 22.5em;
 background-color: silver;
 padding: 2em;
 margin-top: -2em;
}

畫出扇形的頭部:

.head {
 grid-column: 1;
 grid-row: 3;
 background-color: chocolate;
 border-bottom-left-radius: 100%;
}

用徑向漸變畫出眼睛:

.head {
 background-image: radial-gradient(
 circle at 58% 22%,
 black 1.4em,
 transparent 1.4em
 );
}

畫出扇形的耳朵:

.ear {
 grid-column: 2;
 grid-row: 2;
 width: 5em;
 background-color: bisque;
 border-bottom-right-radius: 100%;
}

畫出扇形的身體:

.body {
 grid-column: 2 / 4;
 grid-row: 4;
 background-color: chocolate;
 border-top-right-radius: 100%;
 position: relative;
 overflow: hidden;
}

用偽元素,通過陰影畫出蜷曲的腿:

.body::before {
 content: '';
 position: absolute;
 width: 100%;
 height: 50%;
 box-shadow: 2em -2em 4em rgba(0, 0, 0, 0.3);
 bottom: 0;
 --w: calc((7em + 15.5em) / 2);
 border-top-left-radius: var(--w);
 border-top-right-radius: var(--w);
}

畫出半圓形的小爪子:

.foot {
 grid-column: 1;
 grid-row: 4;
 height: 4em;
 width: 8em;
 background-color: saddlebrown;
 justify-self: end;
 align-self: end;
 border-radius: 4em 4em 0 0;
 filter: brightness(0.8);
}

畫出半圓形的尾巴下部:

.tail-start {
 grid-column: 4;
 grid-row: 4;
 --h: calc(22.5em - 1.5em);
 height: var(--h);
 background-color: bisque;
 align-self: end;
 border-radius: 0 var(--h) var(--h) 0;
}

畫出半圓形的尾巴上部:

.tail-end {
 grid-column: 3;
 grid-row: 1 / 5;
 --h: calc(13em + 5em + 11.5em + 1.5em);
 height: var(--h);
 background-color: chocolate;
 border-radius: var(--h) 0 0 var(--h);
}

在 dom 中再增加一些文本,包括標(biāo)題、作者和面值:

<p class="stamp">
 <p class="puppy">
 <!-- 略 -->
 </p>
 <p class="text">
 <span class="title">Squirrel</span>
 <span class="author">comehope</span>
 <span class="face-value">200</span>
 </p>
</p>

設(shè)置標(biāo)題的文字樣式:

.text {
 position: relative;
 width: calc(100% + 2em * 2);
 height: 6em;
 font-family: sans-serif;
}

.text .title {
 position: absolute;
 font-size: 6em;
 font-weight: bold;
 color: darkslategray;
}

設(shè)置作者的文字樣式:

.text .author {
 position: absolute;
 font-size: 3em;
 bottom: -1.2em;
 color: dimgray;
}

設(shè)置面值的文字樣式:

.text .face-value {
 position: absolute;
 font-size: 14em;
 right: 0;
 line-height: 0.9em;
 color: darkcyan;
}

大功告成!

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

如何使用CSS的Grid布局實(shí)現(xiàn)小松鼠郵票的效果(附源碼)

如何使用CSS的Grid布局實(shí)現(xiàn)小松鼠郵票的效果(附源碼):本篇文章給大家?guī)淼膬?nèi)容是關(guān)于如何使用CSS的Grid布局實(shí)現(xiàn)小松鼠郵票的效果(附源碼),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你有所幫助。效果預(yù)覽源代碼下載每日前端實(shí)戰(zhàn)系列的全部源代碼請(qǐng)從 github 下載:https://github.com/
推薦度:
標(biāo)簽: 如何 郵票 html5
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top