首页 前端知识 html打造动画【系列4】- 哆啦a梦

html打造动画【系列4】- 哆啦a梦

2024-05-23 20:05:59 前端知识 前端哥 619 99 我要收藏
  • 头部包含好几块部分:哆啦a梦的脸部和鼻子,脸部又包括两只眼睛,两只眼睛里面还有眼珠和眼白部分,所以会有好几层的dom嵌套,当然基本图形都是由div+border-radius拼凑而成。

  • 将画好的各个部位品拼凑到相应的位置上即可。

.head{

margin: 0 auto; /头部定义大小并居中显示/

width: 400px;

height: 350px;

background: #008ee3; /头部定义背景颜色/

position: relative;

border-radius: 50% 50% 25% 25% / 55% 55% 45% 45%; /头部定义四个方向圆角大小/

}

.face{

width: 310px; /脸部定义大小/

height: 260px;

background: snow; /脸部定义背景颜色/

border-radius: 50% 50% 25% 25% / 55% 55% 45% 45%; /脸部定义四个方向的圆角大小/

position: relative; /脸部定义位置,是相对于head的位置/

top: 90px;

left: 45px;

}

/左眼眶/

.face>div:first-child{

width: 80px; /左眼框定义大小/

height: 100px;

border-radius: 50%; /左眼框定义与圆角大小/

border:2px #000 solid; /定义外边框/

background: snow;

float: left; /为了使左右两个眼睛能在一排显示/

position: relative; /位置是相对于face的位置/

top:-40px;

left: 71px;

z-index: 50;

}

/右眼眶,画法跟左眼一样/

.face>div:last-child{

width: 80px;

height: 100px;

border-radius: 50%;

border:2px #000 solid;

background: snow;

float: left;

position: relative;

top:-40px;

left: 71px;

z-index: 50;

}

/左眼珠1/

.face>div:first-child div{

width: 20px; /定义眼珠的大小/

height: 25px;

background: #000;

border-radius: 50%;

position: absolute; /定义眼珠的位置,相对于眼眶的位置/

top: 45px;

left: 60px;

}

/左瞳孔/

.face>div:first-child div div{

width: 10px; /定义黑色瞳孔的大小/

height: 10px;

background: #ffffff;

border-radius: 50%;

position: absolute; /定义黑色瞳孔的位置,相对于眼珠的位置/

top: 7px;

left: 10px;

}

/右眼珠和左眼珠画法一样/

.face>div:last-child div{

width: 20px;

height: 25px;

background: #000;

border-radius: 50%;

position: absolute;

top: 45px;

}

/右瞳孔和左瞳孔的画法一样/

.face>div:last-child div div{

width: 10px;

height: 10px;

background: #ffffff;

border-radius: 50%;

position: absolute;

top: 7px;

}

.nose{

width: 30px; /定义红鼻子的大小/

height: 30px;

border-radius: 50%;

background: #c70000;

position: absolute;

top: 130px;

left: 50%;

margin-left: -15px;

z-index: 10;

}

.nose div{

width: 10px; /定义红鼻子里面白色圈圈的大小/

height: 10px;

border-radius: 50%;

position: absolute;

background: #ffffff;

top: 10px;

margin-left: 20px;

z-index: 10;

}

.nose1{

width: 2px; /定义红鼻子下面的那一条黑线/

height: 130px;

background: #000;

position: absolute;

top: 160px;

left: 50%;

margin-left: -1px;

z-index: 10;

}

哆啦a梦的头部.png

画哆啦a梦的嘴巴部分

.mouth{

width: 250px; /定义嘴巴的大小/

height: 200px;

border-radius: 50%;

background: snow;

border-bottom: 2px #000 solid;

margin: -230px auto;

position: relative; /定义嘴巴的位置/

}

哆啦a梦的嘴巴.png

画哆啦a梦的胡须部分
  • 胡须部分其实在上一篇文章画html打造动画【连载3】- 小猫笑脸动画里面画胡须的时候就已经介绍了画胡须的方法,在这里就不赘述了,基本思路都是一样的。

/胡须样式/

.beard .left div:first-child{

width: 120px;

height: 40px;

border-top: 2px #000 solid;

border-radius: 10% 90% 10% 90% / 10% 90% 10% 90%;

position: absolute;

left: 50%;

top: 140px;

margin-left: -170px;

z-index: 100;

}

.beard .left div:nth-child(2){

width: 120px;

height: 40px;

border-top: 2px #000 solid;

border-radius: 10% 90% 10% 90% / 30% 70% 40% 60%;

position: absolute;

left: 50%;

top: 170px;

margin-left: -170px;

z-index: 100;

}

.beard .left div:last-child{

width: 120px;

height: 40px;

border-top: 2px #000 solid;

border-radius: 10% 90% 10% 90% / 40% 60% 10% 90%;

position: absolute;

left: 50%;

top: 200px;

margin-left: -170px;

z-index: 100;

}

.beard .right div:first-child{

width: 120px;

height: 40px;

border-top: 2px #000 solid;

border-radius: 90% 10% 90% 10% / 90% 10% 90% 10%;

position: absolute;

left: 50%;

top: 140px;

margin-left: 50px;

z-index: 100;

}

.beard .right div:nth-child(2){

width: 120px;

height: 40px;

border-top: 2px #000 solid;

border-radius: 90% 10% 90% 10% / 70% 30% 60% 40%;

position: absolute;

left: 50%;

top: 170px;

margin-left: 50px;

z-index: 100;

}

.beard .right div:last-child{

width: 120px;

height: 40px;

border-top: 2px #000 solid;

border-radius: 90% 10% 90% 10% / 60% 40% 90% 10%;

position: absolute;

left: 50%;

top: 200px;

最后

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。

因此收集整理了一份《2024年Web前端开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门!

如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
等大厂,18年进入阿里一直到现在。**

深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。

因此收集整理了一份《2024年Web前端开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

[外链图片转存中…(img-SdIkOkIG-1714866719460)]

[外链图片转存中…(img-mffqz1iN-1714866719460)]

[外链图片转存中…(img-1925fQIb-1714866719460)]

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门!

如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!

转载请注明出处或者链接地址:https://www.qianduange.cn//article/9137.html
标签
评论
发布的文章

jQuery初学

2024-05-29 10:05:14

Jquery中$,web开发语言

2024-05-29 10:05:25

jQuery 实现小球撞击动画

2024-05-29 10:05:04

echarts 横向柱状图

2024-05-29 10:05:01

Echarts:读取动态数据

2024-05-29 10:05:53

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!