最新文章專題視頻專題問答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)前位置: 首頁 - 科技 - 知識百科 - 正文

如何用CSS實(shí)現(xiàn)一只帶帽子的大熊貓(附代碼)

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 18:47:32
文檔

如何用CSS實(shí)現(xiàn)一只帶帽子的大熊貓(附代碼)

如何用CSS實(shí)現(xiàn)一只帶帽子的大熊貓(附代碼):本篇文章給大家?guī)淼膬?nèi)容是關(guān)于如何用CSS實(shí)現(xiàn)一只帶帽子的大熊貓(附代碼),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對你有所幫助。黑眼圈的大熊貓可謂非??蓯?,今天就用CSS實(shí)現(xiàn)以下萌萌噠的大熊貓一枚代碼在這兒:https://codepen.io/
推薦度:
導(dǎo)讀如何用CSS實(shí)現(xiàn)一只帶帽子的大熊貓(附代碼):本篇文章給大家?guī)淼膬?nèi)容是關(guān)于如何用CSS實(shí)現(xiàn)一只帶帽子的大熊貓(附代碼),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對你有所幫助。黑眼圈的大熊貓可謂非??蓯?,今天就用CSS實(shí)現(xiàn)以下萌萌噠的大熊貓一枚代碼在這兒:https://codepen.io/
本篇文章給大家?guī)淼膬?nèi)容是關(guān)于如何用CSS實(shí)現(xiàn)一只帶帽子的大熊貓(附代碼),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對你有所幫助。

黑眼圈的大熊貓可謂非常可愛,今天就用CSS實(shí)現(xiàn)以下萌萌噠的大熊貓一枚

3583943818-5b7a601762f42_articlex.jpg

代碼在這兒:https://codepen.io/woshilyy/p...

body代碼:

<div class="panda">
 <span class="hat"></span>
 <span class="ear earL"></span>
 <span class="ear earR"></span>
 <span class="face">
 <span class="eyes eyesLeft"></span>
 <span class="eyes eyesRight"></span>
 <span class="nose"></span>
 <span class="mouth"></span>
 </span>
 </div>

代碼詳解:

一、制作帽子

使用邊框制作三角形,用偽類制作帽子上面的小球

.hat {
 position: absolute;
 border-bottom: 150px solid red;
 border-left: 75px solid transparent;
 border-right: 75px solid transparent;
 left: 75px;
 z-index: 2;
 }
 
 .hat::before {
 content: "";
 position: absolute;
 width: 30px;
 height: 30px;
 border-radius: 50%;
 background-color: #fff;
 left: -15px;
 top: -8px;
 }

二、制作熊貓臉哈哈哈

.face {
 position: absolute;
 width: 300px;
 height: 250px;
 background-color: #fff;
 border-radius: 50%;
 top: 133px;
 }

三、制作眼睛
使用徑向漸變制作,因?yàn)閮芍谎劬πD(zhuǎn)的對稱的,所以使用了變量控制旋轉(zhuǎn),加了陰影使眼睛更逼真

.eyes {
 position: absolute;
 width: 100px;
 height: 80px;
 border-radius: 50%;
 transform: rotate(calc(-60deg * var(--n)));
 }
 
 .eyesLeft {
 left: 10px;
 top: 100px;
 --n: 1;
 background: radial-gradient(circle at 53% 72%, #fff 1px, transparent 1px), radial-gradient(circle at 50% 80%, #fff 3px, transparent 3px), radial-gradient(circle at 50% 75%, #000 8px, transparent 8px), radial-gradient(circle at 50% 70%, white 15px, transparent 15px), #000;
 box-shadow: -3px 3px 0 3px rgba(0, 0, 0, .1);
 }
 
 .eyesRight {
 right: 10px;
 top: 100px;
 --n: -1;
 background: radial-gradient(circle at 45% 74%, #fff 1px, transparent 1px), radial-gradient(circle at 50% 80%, #fff 3px, transparent 3px), radial-gradient(circle at 50% 75%, #000 8px, transparent 8px), radial-gradient(circle at 50% 70%, white 15px, transparent 15px), #000;
 box-shadow: 3px 3px 0 3px rgba(0, 0, 0, .1);
 }

四、制作鼻子
鼻子只是一個(gè)橢圓+陰影

.nose {
 position: absolute;
 width: 50px;
 height: 20px;
 background-color: #666;
 border-radius: 50%;
 left: calc((300px - 50px)/2);
 box-shadow: 2px 2px 0 2px rgba(0, 0, 0, .1);
 bottom: 60px;
 }

五、制作嘴巴
背景色為透明的圓角矩形+黑色的邊框制作,去掉上邊框

 .mouth {
 position: absolute;
 width: 100px;
 height: 20px;
 background-color: transparent;
 border-bottom: 10px solid #000;
 border-radius: 77% 77% 77%/60% 60% 90% 90%;
 bottom: 20px;
 left: calc((300px - 100px)/2);
 }

六:制作耳朵
兩個(gè)黑色的橢圓,寬>高

 .ear {
 position: absolute;
 width: 100px;
 height: 80px;
 background-color: #000;
 border-radius: 50%;
 top: 141px;
 transform: rotate(calc(40deg * var(--e)));
 }
 
 .earL {
 --e: 1;
 left: 0;
 }
 
 .earR {
 --e: -1;
 right: 0;
 }

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

文檔

如何用CSS實(shí)現(xiàn)一只帶帽子的大熊貓(附代碼)

如何用CSS實(shí)現(xiàn)一只帶帽子的大熊貓(附代碼):本篇文章給大家?guī)淼膬?nèi)容是關(guān)于如何用CSS實(shí)現(xiàn)一只帶帽子的大熊貓(附代碼),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對你有所幫助。黑眼圈的大熊貓可謂非??蓯?,今天就用CSS實(shí)現(xiàn)以下萌萌噠的大熊貓一枚代碼在這兒:https://codepen.io/
推薦度:
標(biāo)簽: 使用 帽子 實(shí)現(xiàn)
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top