CSS如何绘制一只萌萌哒的大熊猫?(代码示例)


本文摘自PHP中文网,作者青灯夜游,侵删。

本篇文章给大家带来的内容是介绍CSS绘制一只萌萌哒的大熊猫的方法,有一定的参考价值,有需要的朋友可以参考一下,希望对你们有所帮助。

黑眼圈的大熊猫可谓非常可爱,今天就用CSS实现以下萌萌哒的大熊猫一枚(效果如下):

1.jpg

代码在这儿:https://codepen.io/woshilyy/p...

html代码:

1

2

3

4

5

6

7

8

9

10

11

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

    </p>

代码详解:

一、制作帽子

使用边框制作三角形,用伪类制作帽子上面的小球

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

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

        }

二、制作熊猫脸哈哈哈

1

2

3

4

5

6

7

8

.face {

            position: absolute;

            width: 300px;

            height: 250px;

            background-color: #fff;

            border-radius: 50%;

            top: 133px;

        }

三、制作眼睛

使用径向渐变制作,因为两只眼睛旋转的对称的,所以使用了变量控制旋转,加了阴影使眼睛更逼真

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

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

        }

四、制作鼻子

鼻子只是一个椭圆+阴影

1

2

3

4

5

6

7

8

9

10

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

        }

五、制作嘴巴

背景色为透明的圆角矩形+黑色的边框制作,去掉上边框

1

2

3

4

5

6

7

8

9

10

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

       }

六:制作耳朵

两个黑色的椭圆,宽>高

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

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

       }

总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。

以上就是CSS如何绘制一只萌萌哒的大熊猫?(代码示例)的详细内容,更多文章请关注木庄网络博客

相关阅读 >>

css元素如何重叠?

css横着写还是竖着写

一步步教你使用css制作一个简单美观的导航栏(代码详解)

css vertical-align属性怎么用

css中box是什么文件

asp怎样引入css样式

css中font-family是什么意思

css背景怎么设置

css text-shadow属性怎么用

css怎么设置4个div并排显示

更多相关阅读请进入《css》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...