CSS3哭臉效果
分享一段程式碼例項,它利用css3實現了哭臉效果。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> * { margin: 0px; padding: 0px; } .face { position: relative; margin: 70px auto; text-align: center; } .left-eye, .right-eye { width: 50px; height: 50px; background: #000; position: relative; display: inline-block; margin: 20px; border-radius: 100%; } .left-eye::before { content: ''; position: absolute; width: 40px; height: 10px; top: 0; background: #000; transform: rotate(-30deg); z-index: 1; left: -7px; } .right-eye::before { content: ''; position: absolute; width: 40px; height: 10px; right: 0; background: #000; transform: rotate(30deg); z-index: 1; right: -7px; } .left-eye::after { content: ''; position: absolute; width: 20px; height: 20px; left: 10px; top: 10px; border-radius: 100%; background: #ccc; } .right-eye::after { content: ''; position: absolute; width: 20px; height: 20px; right: 10px; top: 10px; border-radius: 100%; background: #ccc; } .left-eye span { position: absolute; background: #00b3b3; width: 20px; height: 20px; transform: rotate(-45deg); display: block; top: 70px; border-radius: 80% 0 55% 50% / 55% 0 80% 50%; } .mouth-hidden { height: 20px; overflow: hidden; margin-top: 30px; } .mouth { height: 100px; width: 100px; border: 4px solid #000; display: inline-block; border-radius: 100%; } </style> </head> <body> <div class="face"> <div class="eyes"> <div class="left-eye"> <span></span> </div> <div class="right-eye"> </div> </div> <div class="mouth-hidden"> <div class="mouth"> </div> </div> </div> </body> </html>
上面的程式碼實現了我們的要求,更多內容可以參閱相關閱讀。
相關閱讀:
(1).position參閱css position一章節。
(2).border-radius參閱CSS3 border-radius一章節。
(3).::before參閱CSS E:before/E::before一章節。
(4).transform: rotate()參閱transform: rotate()一章節。
(5).z-index參閱CSS z-index一章節。
相關文章
- CSS3象棋效果CSSS3
- CSS3 矩形切角效果CSSS3
- CSS3翻轉效果CSSS3
- CSS3呼吸燈效果CSSS3
- CSS3空心圓效果CSSS3
- CSS3 checkbox美化效果CSSS3
- CSS3 文字效果CSSS3
- CSS3箭靶效果程式碼CSSS3
- CSS3花屏文字效果CSSS3
- CSS3白鶴展翅效果CSSS3
- CSS3 loadding效果程式碼CSSS3
- CSS3 loadding載入效果CSSS3
- CSS3動畫效果下拉導航選單效果CSSS3動畫
- 哭
- CSS3多面體旋轉效果CSSS3
- CSS3星系旋轉效果代CSSS3
- CSS3多層邊框效果CSSS3
- CSS3郵票鋸齒效果CSSS3
- CSS3圓環效果程式碼CSSS3
- CSS3文字模糊效果CSSS3
- CSS3 光弧擴散效果CSSS3
- CSS3現菱形效果程式碼CSSS3
- CSS3對勾效果詳解CSSS3
- CSS3圖片拉近放大效果CSSS3
- CSS3圖片旋轉效果CSSS3
- CSS3動畫按鈕效果CSSS3動畫
- CSS3環形輻射效果CSSS3
- CSS3 div水平運動效果CSSS3
- css3過渡效果詳解CSSS3
- css3小球上下移動效果CSSS3
- 漪漣波紋效果 css3 animationCSSS3
- CSS3小球靜態環繞效果CSSS3
- CSS3 文字立體凸起效果CSSS3
- CSS3開關門效果詳解CSSS3
- CSS3動態月食效果詳解CSSS3
- CSS3旋轉載入等待效果CSSS3
- CSS3地月星系旋轉效果CSSS3
- CSS3紅色心形效果程式碼CSSS3