当前位置:首页 > 大全 >

冬奥运动会的吉祥物怎么画(2022年冬季运动会吉祥物怎么画)

来源:原点资讯(www.yd166.com)时间:2023-06-01 07:05:41作者:YD166手机阅读>>

最近由于冬奥会的召开,吉祥物冰墩墩瞬间成了大家关注的焦点,网上甚至将价格炒到了2000元以上,那么作为一名程序员,我们既然买不起冰墩墩,那么就跟我一起利用代码来换画一个冰墩墩吧!

先看效果图

冬奥运动会的吉祥物怎么画,2022年冬季运动会吉祥物怎么画(1)

这里采用的都是web前端的基础技术,html与css感兴趣的,可以跟着我一步一步来完成。

第一步:打开编辑器,新建一个网页文件

冬奥运动会的吉祥物怎么画,2022年冬季运动会吉祥物怎么画(2)

注意网页文件的后缀名是html,编辑器采用的vscode编辑器,当然大家也可以用记事本编写,然后注意将后缀txt,改为html即可。

第二步:书写网页基本骨架结构

冬奥运动会的吉祥物怎么画,2022年冬季运动会吉祥物怎么画(3)

网页的基本骨架部分,使用编辑器的同学可以直接输入!,然后按一下tab键自动生成,如果是记事本就需要手打了,大家注意标签的缩进。

第三步:书写冰墩墩的结构

<body> <div class="m_body"></div> <div class="ear_left"></div> <div class="ear_right"></div> <div class="eye_left"></div> <div class="eye_right"></div> <div class="face c_blue"></div> <div class="face c_red"></div> <div class="face c_purple"></div> <div class="face c_yellow"></div> <div class="face c_green"></div> <div class="nose"></div> <div class="mouse"></div> <div class="arm_left"></div> <div class="arm_right"></div> <div class="leg_left"></div> <div class="leg_right"></div> </body>

为了方便大家使用,咱们直接粘贴代码即可。每一个div块,都是冰墩墩的一个组成部分。有不懂的可以在下方留言。

第四步:编写冰墩墩样式

<head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>冰墩墩</title> <style> * { margin: 0; padding: 0 } body { background: pink; color: #000; } .m_body{ width: 362px; height: 410px; border: #393939 8px solid; margin: 50px auto; border-radius: 88% 88% 62% 68% / 82% 82% 95% 84%; position: absolute; left: 109px; top: -30px; background: #fff; } .ear_left, .ear_right { background: #393939; width: 81px; height: 115px; border-radius: 50%; position: absolute; z-index: -1; } .ear_left { left: 150px; top: 26px; transform: rotate( -10deg ); } .ear_right { left: 362px; top: 28px; transform: rotate(10deg); } .eye_left, .eye_right { background: #393939; width: 83px; height: 115px; border-radius: 50%; position: absolute; } .eye_left { left: 185px; top: 122px; transform: rotate(45deg); } .eye_right { left: 329px; top: 122px; transform: rotate(-45deg); } .eye_left:before, .eye_right:before { content: ""; width: 40px; height: 40px; border: #fff 5px solid; border-radius: 100%; position: absolute; } .eye_left:before { right: 10px; top: 22px; } .eye_right:before { left: 10px; top: 22px; } .eye_left:after, .eye_right:after { content: ""; width: 10px; height: 10px; background: #9b9b9b; border-radius: 100%; position: absolute; } .eye_left:after { right: 27px; top: 31px; } .eye_right:after { left: 41px; top: 44px; } .face { position: absolute; border-radius: 48% 48% 44% 49%/ 53% 54% 45% 47%; } .c_blue { border: #6bcdf3 5px solid; width: 280px; height: 224px; left: 150px; top: 78px; } .c_red { border: #af2350 5px solid; width: 287px; height: 233px; left: 146px; top: 73px; } .c_purple { border: #5d75b3 5px solid; width: 295px; height: 240px; left: 142px; top: 70px; } .c_yellow { border: #ffc346 5px solid; width: 305px; height: 248px; left: 137px; top: 65px; } .c_green { border: #7fcb58 5px solid; width: 313px; height: 256px; left: 133px; top: 61px; } .arm_left, .arm_right { background: #333; position: absolute; z-index: -1; } .arm_left { width: 75px; height: 118px; left: 64px; top: 244px; transform: rotate(45deg); border-radius: 24% 69% 68% 76%/ 53% 95% 40% 52%; } .arm_right { width: 75px; height: 148px; left: 463px; top: 162px; transform: rotate(37deg); border-radius: 56% 62% 98% 6%/ 40% 46% 80% 58%; } .arm_right:before { content: ""; width: 16px; height: 24px; background: #bc242c; position: absolute; border-top-left-radius: 50%; border-top-right-radius: 50%; transform: rotate(45deg); left: 32px; top: 20px; } .arm_right:after { content: ""; width: 16px; height: 24px; background: #bc242c; position: absolute; border-top-left-radius: 50%; border-top-right-radius: 50%; transform: rotate(-45deg); left: 26px; top: 20px; } .arm_c { content: ""; width: 16px; height: 24px; position: absolute; left: 426px; top: 20px; } .nose { background-color: #333333; } .nose:before, .nose:after { content: ''; position: absolute; background-color: inherit; } .nose, .nose:before, .nose:after { width: 28px; height: 18px; border-radius: 42px 42px 60px 61px/ 30px 30px 50px 46px; } .nose { position: absolute; left: 284px; top: 187px; } .mouse { position: absolute; left: 265px; top: 205px; width: 68px; height: 25px; border-radius: 48%; border: #393939 7px solid; border-top: none; border-left: 0; border-right: 0; } .leg_left, .leg_right { background: #333; position: absolute; width: 83px; height: 80px; border-radius: 0 0 30px 30px; z-index: -1; } .leg_left { left: 187px; top: 423px; } .leg_right { left: 328px; top: 423px; } .leg_left:after, .leg_right:after { content: ""; width: 43px; height: 30px; position: absolute; background: #363636; border-radius: 30px; } .leg_left:after { bottom: 0; right: -3px; } .leg_right:after { bottom: 0; left: -3px; } </style> </head>

大家注意编写的位置,将style标签放入head标签内部,然后复制对应的样式代码,大家有问题的话,可以下方留言。

这样我们的冰墩墩就绘制完成了,咱们只需要打开网页文件就可以看到咱们的成果,冰墩墩了,大家一起动手试一试吧!

栏目热文

玻璃钢翻模用什么材料(手糊玻璃钢与模压玻璃钢的区别)

玻璃钢翻模用什么材料(手糊玻璃钢与模压玻璃钢的区别)

2016年中国环塔(国际)拉力赛今天迎来了第二次全体参赛人员休整日,23号全体参赛人员在且末县休整一天,小编今天在赛场维...

2022-12-17 08:28:54查看全文 >>

以身相许姜尧川霍冉全文免费阅读无弹窗(以身相许小说姜尧川霍冉番外)

以身相许姜尧川霍冉全文免费阅读无弹窗(以身相许小说姜尧川霍冉番外)

哈喽,大家好,我是小时,书荒不迷路,小时来指路。今天给大家分享的是几本男友力爆棚的甜宠文,刚毅果敢的糙汉子VS一心报恩萌...

2023-10-01 09:59:18查看全文 >>

python利用海伦公式计算三角形面积(python由三点坐标计算三角形面积)

python利用海伦公式计算三角形面积(python由三点坐标计算三角形面积)

本文以GitHub上为素材,规划为约100天的练习,每次的学习和总结均发在这里。有错误的地方还请朋友们指正。应用场景在D...

2022-12-11 23:14:00查看全文 >>

不良宠婚txt(不良宠婚完结txt)

不良宠婚txt(不良宠婚完结txt)

《不良宠婚》洛心辰不良宠婚文案:本书背景为虚拟时代,文明程度与现代同步。这是一部特种兵男神宠妻如命的血泪史,更是一个叛逆...

2022-12-19 10:40:10查看全文 >>

警花林欣儿的沉沦全文(黎警官的女王妻小说全文免费阅读)

警花林欣儿的沉沦全文(黎警官的女王妻小说全文免费阅读)

今夜的皇宫注定无法太平。明珠宫外,围满了奉命前来抓住林欣儿的侍卫。事发突然,她还没来的及梳洗,就披头散发地被架到了门外。...

2023-06-04 00:12:42查看全文 >>

川崎摩托车2021售价一览表(川崎ninja400落地价)

川崎摩托车2021售价一览表(川崎ninja400落地价)

文:懂车帝原创 付博[懂车帝原创 产品] 日前,我们从川崎摩托车官方获悉,2023款川崎Ninja ZX-10R KRT...

2023-06-29 07:25:07查看全文 >>

50立方水等于多少升(50立方厘米的水有多少升)

50立方水等于多少升(50立方厘米的水有多少升)

来源:人民日报河北沧州黄骅市友和种植专业合作社种植的旱碱麦喜获丰收。苑立伟摄河北沧州渤海新区南大港湿地,刚栽种柽柳时的盐...

2022-12-05 15:39:46查看全文 >>

重叠构成作业图片(重叠的图片设计构成)

重叠构成作业图片(重叠的图片设计构成)

艺术创作就像一场魔术表演,艺术家是魔术师,要通过巧妙的手法把观众带入他设置的剧情中。造型艺术也不例外,它需要把简单的要素...

2023-10-23 03:39:16查看全文 >>

顺利瑞通驾校电话(胜通驾校总校电话)

顺利瑞通驾校电话(胜通驾校总校电话)

驻马店广电融媒体消息:又是一年高考季,又是一年爱心聚。为帮助广大考生安全、快捷、准时抵达考场,以良好的心态迎接考试,6月...

2022-12-19 20:28:31查看全文 >>

幼儿园击掌卡通图片(五一劳动节图片幼儿园 卡通图片)

幼儿园击掌卡通图片(五一劳动节图片幼儿园 卡通图片)

2021年9月22日,是郑州市小学2到6年级秋季开学的日子。上午7点许,郑州市金水区经八路街道办事处巡防中队队员孟庆斌、...

2023-10-23 05:28:39查看全文 >>

文档排行