千篇一律先定义一个画哆啦a梦的大容器,确定它的大小和位置。

/*哆啦A梦*/

.doa{position: relative;top: 100px;}

画哆啦a梦的头部(包括脸,脸部包括眼睛和鼻子)

头部包含好几块部分:哆啦a梦的脸部和鼻子,脸部又包括两只眼睛,两只眼睛里面还有眼珠和眼白部分,所以会有好几层的dom嵌套,当然基本图形都是由p+border-radius拼凑而成。

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

看我前面画的几个图画就知道border-radius是一个非常常用的属性,几乎p的每一次变形都离不开它,其实border-radius的真面目应该是border-radius: 300px 300px 300px 300px/300px 300px 300px 300px;酱紫的,我们一般不写斜杠后面的内容,斜杠切面是水平长度,斜杠后面是垂直高度,前杠后面默认不写就是水平和垂直大小是一样的。我知道我这样说不够详细,可以参考我鑫神的博客秋月何时了,CSS3 border-radius知多少?,保证你分分钟在老司机的带领下彻底弄懂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>p: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>p: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>p:first-child p{

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

height: 25px;

background: #000;

border-radius: 50%;

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

top: 45px;

left: 60px;

}

/*左瞳孔*/

.face>p:first-child p p{

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

height: 10px;

background: #ffffff;

border-radius: 50%;

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

top: 7px;

left: 10px;

}

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

.face>p:last-child p{

width: 20px;

height: 25px;

background: #000;

border-radius: 50%;

position: absolute;

top: 45px;

}

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

.face>p:last-child p p{

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

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梦的嘴巴部分

嘴巴应该是很简单的了吧,看一眼就知道是是用边框+border-radius实现的。

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

margin-left: 50px;

z-index: 100;

}

.beard span{

display: block;

width: 60px;

height: 3.5px;

background: #ffffff;

border-radius: 4px;

position: absolute;

top: 352px;

left: 50%;

margin-left: -105px;

}

哆啦a梦的胡须.png

画哆啦a梦的脖子部分(脖子部分包括铃铛)

脖子就是基本p变形之后的图形,多余的部分隐藏到头部下面就可以了。

铃铛部分是各个很简单的基本图形组成。

.neck{

width: 330px;

height: 200px;

border-radius: 50% 50% 20% 20% / 50% 50% 50% 50%;

background: #e30000;

margin: 80px auto;

z-index: 100;

}

.neck p:first-child{

border: 2px #000 solid;

border-radius: 50%;

width: 40px;

height: 40px;

background: #ffdd2e;

position: absolute;

top: 350px;

left: 50%;

margin-left: -22px;

transition: all 1s;

}

.neck p:nth-child(2){

border: 2px #000 solid;

width: 44px;

height: 5px;

background: #ffdd2e;

position: absolute;

left: 50%;

margin-left: -24px;

top: 363px;

border-radius: 5px;

transition: all 1s;

}

.neck p:nth-child(3){

width: 8px;

height: 8px;

border: 2px #000 solid;

position: absolute;

background: #6c5844;

border-radius: 50%;

left: 50%;

margin-left: -6px;

top: 375px;

transition: all 1s;

}

.neck p:nth-child(4){

width: 2px;

height: 8px;

background: #000;

position: absolute;

left: 50%;

margin-left: -1px;

top: 385px;

transition: all 1s;

}

哆啦a梦的脖子.png

完成哆啦a梦的动态效果

动起来的哆啦a梦才比较萌对吧,那我们就让它动起来吧(transition属性)。

鼠标移动到眼睛部位左眼珠移动到左边。

鼠标移动到嘴巴部位,脸部表情变化。

鼠标移动到铃铛部分,铃铛变大。/*眼睛动效*/

.head:hover .face>p:first-child p{

left: 0px;

transition: all 1s;

}

.head:hover .face>p:first-child p p{

left: 0px;

transition: all 1s;

}

/*嘴巴动效,嘴巴的dom容器下面要加了个空的p容器*/

.mouth p:first-child{

width: 82px;

height: 2px;

background: #000;

position: absolute;

z-index: 1000;

top: -25px;

left: 6px;

display: none;

}

.mouth p:nth-child(2){

width: 82px;

height: 2px;

background: #000;

position: absolute;

z-index: 1000;

top: -25px;

left: 90px;

display: none;

}

.mouth:hover{

border-radius: 0;

width: 180px;

height: 200px;

}

.mouth:hover p:first-child,.mouth:hover p:nth-child(2){

display: block;

}

/*铃铛动效*/

.neck:hover p:first-child{

width: 60px;

height: 60px;

left: 50%;

margin-left: -30px;

}

.neck:hover p:nth-child(2){

width: 66px;

height: 7.5px;

left: 50%;

margin-left: -33px;

}

.neck:hover p:nth-child(3){

width: 12px;

height: 12px;

left: 50%;

margin-left: -6px;

top: 385px;

}

.neck:hover p:nth-child(4){

width: 2px;

height: 12px;

left: 50%;

margin-left: 1px;

top: 400px;

}

PHP画a梦,分享html打造动画哆啦A梦的示例代码相关推荐

  1. 用python画哆啦a梦的头,用python画多来a梦-【Python】绘制哆啦A梦

    from turtle import * #无轨迹跳跃 defmy_goto(x, y): penup() goto(x, y) pendown()#眼睛 defeyes(): fillcolor(& ...

  2. python画图哆啦a梦-Python—turtle画图(哆啦A梦)

    [知识延伸] 在Python中有一个名为turtle的工具,也可以称他为画图工具,这是一种Python所独有的工具.是他为我们所包装好的模块,在这里 [要求] 今天我们利用turtle画图来绘制一个哆 ...

  3. python画图哆啦a梦-【Python】绘制哆啦A梦

    from turtle import * #无轨迹跳跃 defmy_goto(x, y): penup() goto(x, y) pendown()#眼睛 defeyes(): fillcolor(& ...

  4. 如何用手机HTML制作哆啦a梦,HTML5利用canvas绘制哆啦A梦头部-电脑自学网

    html5的canvas是很强大的,下面本篇文章使用html5 canvas 实现一个简单的哆啦A梦头部.有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助. 效果如下: 代码如下: 您的 ...

  5. 生日快乐模板php,HTML5应用-生日快乐动画之实现星星的示例代码分享

    在讲述绘制星星动画之前,先介绍一点javascript知识. 面向对象: javascript本质上不是面向对象语言,而是脚本语言,一般只适合简单.代码量少的程序,因为脚本过于复杂会直接导致浏览器出现 ...

  6. 侧边导航栏代码css,【源码分享】jquery+css实现侧边导航栏(示例代码)

    1 2 3 /*重置一些样式*/ 4 *, *::after, *::before{ 5 box-sizing:border-box; 6 /*padding: 0;*/ 7 margin:0; 8 ...

  7. PHP画a梦,html打造动漫人物--哆啦A梦

    我相信每个人的童年都有一个哆啦a梦,一个小小的肚皮里装满了不可思议的哆啦a梦,一个在你无助伤心的时候陪在你身边的哆啦a梦,一个陪你胡思乱想陪你吃铜锣烧的哆啦a梦~今天我们就来画一个我们心中的哆啦a梦吧 ...

  8. html打造动画【系列4】哆啦A梦

    我相信每个人的童年都有一个哆啦a梦,一个小小的肚皮里装满了不可思议的哆啦a梦,一个在你无助伤心的时候陪在你身边的哆啦a梦,一个陪你胡思乱想陪你吃铜锣烧的哆啦a梦~今天我们就来画一个我们心中的哆啦a梦吧 ...

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

    我相信每个人的童年都有一个哆啦a梦,一个小小的肚皮里装满了不可思议的哆啦a梦,一个在你无助伤心的时候陪在你身边的哆啦a梦,一个陪你胡思乱想陪你吃铜锣烧的哆啦a梦~今天我们就来画一个我们心中的哆啦a梦吧 ...

最新文章

  1. ubuntu 安装 spconv
  2. 修改大型 XML 文件的有效方法
  3. mysql还原数据报错:
  4. Linq 下的 Take() 方法内部机制是怎样的?
  5. 前端学习(1339):mongodb更新数据文档
  6. python给定起始和结束日期,如何得到中间所有日期
  7. 移动开发出路在哪里?是时候用物联网了!| 技术头条
  8. 样式中的url加载探疑
  9. matlab 彩色转为黑白,彩色图转为灰度图和黑白图方法
  10. crontab布置定时任务
  11. 配置本地yum源文件
  12. 使用阿尔卑斯山法进行高效时间管理
  13. 论文不记之《StyleNet: Generating Attractive Visual Captions with Styles》
  14. 最全小布老师所有视频推荐--oracle视频资料库
  15. Vue-Vnode类型
  16. 毕业入职2个月小感悟
  17. FusionCharts在Java中的应用
  18. 推荐系统读书笔记(二)利用用户行为数据
  19. HTML5新标签与特性
  20. python JPG图片手动圈画掩膜Mask轮廓ROI

热门文章

  1. 【Python实用工具】速来!!一篇文章十分钟教你如何使用Python第三方库basemap进行地图绘制
  2. (147)Verilog编程:使用3-8译码器实现全减器
  3. 卡路里与脂肪重量的换算
  4. element ui 表格合并行和列
  5. azkaban 调度任务一直处于preparing状态
  6. python图片保存为txt文件_python实现对文件中图片生成带标签的txt文件方法
  7. pythonGUI:tkinter 背单词
  8. p5.js创意绘图(2)自画像
  9. 计算机窗口是什么意思解释,Windows电脑窗口是什么?关于电脑窗口的一些基础知识...
  10. 开发也可以如此简单!华为云发布两款开发工具