如何用純CSS畫一隻可愛玉兔?以下這篇文章就手把手教你使用純CSS畫出可愛玉兔,希望對大家有幫助!
這裡有段小故事跟大家科普一下哦:
玉兔本是後羿,因為嫦娥奔月,而又思念後羿,後羿為了和嫦娥在一起,情願變成了她最愛的小動物--玉兔.可惜嫦娥始終不知玉兔就是她日夜思念的後羿!
下面就讓我帶領大家實現一下可愛的玉兔吧。
玉兔效果圖:
#實作程式碼:
html標籤
<div class="rabit"> <div class="ear"></div> <div class="innerear"></div> <div class="ear right"></div> <div class="innerear right"></div> <div class="eye"></div> <div class="eye right"></div> <div class="shy"></div> <div class="shy right"></div> <div class="mouth"></div> <div class="mouth right"></div> <div class="head"></div> <div class="body"></div> <div class="arm"></div> <div class="arm right"></div> <div class="leg"></div> <div class="leg right"></div> </div>
css佈局
* { padding: 0; margin: 0; } body { background: rgb(38, 44, 56); } /* 大盒子 */ .rabit { width: 300px; height: 300px; position: relative; margin: 120px auto; }
頭
.head { width: 222px; height: 213px; border-radius: 50%; background: linear-gradient(1deg, #e2e2e2 1%, rgb(255, 192, 236) 16%, rgb(255, 192, 236)); box-shadow: 0 0 2px 0 rgb(255, 192, 236); position: absolute; z-index: 2; left: 39px; top: 43px; }
耳朵
#/* 耳朵 */ .ear { width: 65px; height: 128px; background: rgb(255, 192, 236); box-shadow: 0 0 2px 0 rgb(255, 192, 236); border-radius: 80px 80px 65px 65px/53px 53px 254px 254px; position: absolute; left: 65px; top: -49px; transform: rotateZ(-24deg); } /* 右耳 */ .ear.right { transform: scale(-1, 1) rotateZ(-24deg); left: 173px; top: -51px; } /* 耳朵阴影 */ .innerear { width: 50px; height: 100px; background: rgb(255, 192, 236); box-shadow: 0 0 2px 0 rgb(255, 192, 236); background: linear-gradient(-196deg, #e2e2e2 9%, rgb(255, 192, 236)); border-radius: 80px 80px 65px 65px/53px 53px 254px 254px; transform: rotateZ(-24deg); position: absolute; left: 73px; top: -33px; } /* 右面阴影 */ .innerear.right { transform: scale(-1, 1) rotateZ(-24deg); left: 179px; top: -35px; }
眼睛
/* 眼睛 */ .eye { width: 48px; height: 6px; background: rgb(0, 0, 0); border-radius: 3px; position: absolute; left: 65px; top: 119px; z-index: 3; transform: rotate(-2deg); } /* 右边眼睛 */ .eye.right { left: 195px; top: 119px; transform: rotate(2deg); }
害羞圓點
/* 害羞圆 */ .shy { width: 31px; height: 25px; border-radius: 50%; background-color: #e9a998; position: absolute; left: 85px; top: 140px; z-index: 3; } /* 右边害羞圆 */ .shy.right { left: 184px; top: 141px; transform: rotate(-8deg); }
嘴巴
/* 嘴 */ .mouth { width: 16px; height: 10px; border: 4px solid black; border-right: 4px solid black; border-bottom: 4px solid black; border-left: 4px solid transparent; border-top: 4px solid transparent; border-radius: 50%; transform: scale(-1.2, 1) rotate(43deg); position: absolute; left: 126px; top: 180px; z-index: 3; } /* 嘴右边 */ .mouth.right { transform: scale(1.2, 1) rotate(43deg); position: absolute; left: 146px; top: 180px; }
#肚子
.body { width: 128px; height: 140px; box-shadow: 0 0 2px 0 rgb(255, 255, 255); background: -webkit-radial-gradient(50% 0%, farthest-side circle, #CDC9C9 2%, rgb(255, 192, 236) 50%, rgb(255, 192, 236)); position: absolute; left: 85px; top: 219px; z-index: 1; border-radius: 0px 0px 53px 54px/0px 0px 53px 53px; }
手臂
/* 手 */ .arm { width: 43px; height: 100px; box-shadow: 0 0 2px 0 rgb(255, 192, 236); background: linear-gradient(-66deg, #e2e2e2 18%, rgb(255, 192, 236) 37%, rgb(255, 192, 236)); border-radius: 120px 120px 280px 280px/120px 120px 800px 800px; position: absolute; left: 59px; top: 225px; transform: rotate(25deg); } /* 右手 */ .arm.right { left: 200px; top: 225px; background: linear-gradient(66deg, #e2e2e2 8%, rgb(255, 192, 236) 37%, rgb(255, 192, 236)); transform: rotate(-17deg); animation: hop 2s linear infinite; } @keyframes hop { 20% { transform: rotate(-40deg) translateX(18px); box-shadow: -0.2em 1em 0 -1em #333; } }
腿
/* 腿 */ .leg { width: 38px; height: 62px; box-shadow: 0 0 2px 0 rgb(255, 192, 236); background: linear-gradient(-66deg, #e2e2e2 18%, rgb(255, 192, 236) 37%, rgb(255, 192, 236)); border-radius: 120px 120px 680px 280px/120px 120px 800px 800px; position: absolute; left: 88px; top: 313px; transform: rotate(-3deg); } /* 右腿 */ .leg.right { background: linear-gradient(-66deg, #e2e2e2 18%, rgb(255, 192, 236) 37%, rgb(255, 192, 236)); transform: scale(-1, 1) rotate(-3deg); left: 173px; top: 313px; }
是不是很簡單啊?你實現了嗎!
更多程式相關知識,請造訪:程式設計影片! !
以上是手把手教你使用純CSS繪製可愛玉兔(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

Wufoo一直在集成方面非常出色。他們與特定應用程序(例如廣告系列顯示器,MailChimp和Typekit)進行集成,但他們也


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

Dreamweaver CS6
視覺化網頁開發工具

MantisBT
Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

DVWA
Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

MinGW - Minimalist GNU for Windows
這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。

SecLists
SecLists是最終安全測試人員的伙伴。它是一個包含各種類型清單的集合,這些清單在安全評估過程中經常使用,而且都在一個地方。 SecLists透過方便地提供安全測試人員可能需要的所有列表,幫助提高安全測試的效率和生產力。清單類型包括使用者名稱、密碼、URL、模糊測試有效載荷、敏感資料模式、Web shell等等。測試人員只需將此儲存庫拉到新的測試機上,他就可以存取所需的每種類型的清單。