五分鐘用CSS創造一隻萌萌噠的大熊貓

黑眼圈的大熊貓可謂很是可愛,今天就用CSS實現如下萌萌噠的大熊貓一枚spa

圖片描述

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

body代碼:orm

<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>

代碼詳解:blog

1、製做帽子圖片

使用邊框製做三角形,用僞類製做帽子上面的小球ci

.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;
        }

2、製做熊貓臉哈哈哈get

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

3、製做眼睛
使用徑向漸變製做,由於兩隻眼睛旋轉的對稱的,因此使用了變量控制旋轉,加了陰影使眼睛更逼真it

.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);
        }

4、製做鼻子
鼻子只是一個橢圓+陰影io

.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;
        }

5、製做嘴巴
背景色爲透明的圓角矩形+黑色的邊框製做,去掉上邊框form

.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);
        }

六:製做耳朵
兩個黑色的橢圓,寬>高

.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;
        }
相關文章
相關標籤/搜索