随着北京冬奥会的开幕,吉祥物“ 冰墩墩”可是火出了圈,销售“ 冰墩墩”的店铺排起了长龙,用python可以绘画冰墩墩吗?当然是可以的。很多小伙伴在求python代码,下面就是源码啦,大家赶紧用python实现冰墩墩吧,彻底实现一人一墩。
一、python实现冰墩墩步骤:
1、安装python环境;
2、在桌面创建文本文件,将下面的代码复制粘贴进去;
3、将创建文件的格式修改为.py
4、双击运行就可以啦!
二、python实现冰墩墩源代码:
import turtle
turtle.title('Python(冰墩墩)')
turtle.speed(40) # 可以自己调节速度
# 左手
turtle.penup()
turtle.goto(177, 112)
turtle.pencolor("lightgray")
turtle.pensize(3)
turtle.fillcolor("white")
turtle.begin_fill()
turtle.pendown()
turtle.setheading(80)
turtle.circle(-45, 200)
turtle.circle(-300, 23)
turtle.end_fill()
# 左手内
turtle.penup()
turtle.goto(182, 95)
turtle.pencolor("black")
更多源码点击下方链接查看
python画冰墩墩源代码
冰墩墩书签教程如下:
1、将白色的纸,对折2次,展开(如图所示);小朋友们,拿出大家准备的纸张,开始行动起来吧。
2、沿对折线剪开(如何所示)。
3、在剪裁好的纸张上面,画出“冰墩墩”或者“雪容融”亦或者是自己设计的奥运“吉祥物”,在画上五环、装饰物、或者写上对北京冬奥会的祝福,这样一个“奥运小书签”就做好了。
冰墩墩介绍
冰墩墩(Bing Dwen Dwen)是2022年北京冬季奥运会的吉祥物,以大熊猫为原型进行设计创作,于2019年9月17日正式对外发布。冰墩墩的头部外壳造型取自冰雪运动头盔,装饰彩色光环,整体形象酷似航天员。冰墩墩性别中立,不会发出声音,仅以肢体动作传达信息。
冰墩墩以大熊猫为原型进行设计创作,将大熊猫形象与冰晶外壳相结合,体现了冬季冰雪运动特点。熊猫头部装饰彩色光环,其灵感源自于北京冬奥会的国家速滑馆——“冰丝带”,流动的明亮色彩线条象征着冰雪运动的赛道和5G高科技;头部外壳造型取自冰雪运动头盔。
熊猫整体形象酷似航天员,是一位来自未来的冰雪运动专家,寓意现代科技和冰雪运动的完美结合。
效果图,图片自己换,
html代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>泰国</title>
<link rel="stylesheet" type="text/css" href="css/index.css"/>
<script type="text/javascript" src="js/index.js"></script>
</head>
<body>
<div class="box">
<div class="titles">泰国</div>
<div class="img-box">
<img class="auto-img" src="images/a001.jpg"/>
</div>
<div class="text-box">
<div class="text-box-a">
<a href="#">曼谷、芭提雅(珊瑚岛、金沙岛)5晚7天</a>
</div>
<div class="text-box-a">
东航直飞曼谷客机,入住1晚曼谷国际5星+4晚泰式5星酒店,芭提雅双岛(珊瑚岛+金沙岛)清...
</div>
<div class="text-box-a">
出发日期:星期一,星期二,星期三,星期四,星期五
</div>
</div>
<div class="bottom ovf">
<div class="fl text-a1">
班期:每周发团
</div>
<div class="fr">
<div class="price">¥&nbsp4549</div>
<div class="rush-to-buy">立即抢购</div>
</div>
</div>
</div>
</body>
</html>
css样式:
html,body{
padding:0
margin:20px 0 0
}
a{
text-decoration:none
}
.fl{
float:left
}
.fr{
float:right
}
.ovf{
overflow: hidden
}
.box{
width:50%
margin:0 auto
border:1px dashed #000000
padding:4px
}
.titles{
width:100%
text-align: center
color:#ffffff
background-color: #ff0000
}
.img-box{
width:100%
margin-top: 4px
}
.auto-img{
display: block
width:100%
}
.text-box{
width:100%
}
.text-box-a{
width:100%
font-size: 14px
line-height: 20px
letter-spacing: 1px
}
.text-box-a>a{
color:#0089ff
}
.bottom{
margin-top: 30px
}
.text-a1{
font-size: 18px
font-style: italic
font-style:oblique/*为保证斜体效果加一个*/
}
.price{
font-size: 16px
color:#8B3E2F
}
.rush-to-buy{
width:80px
text-align: center
background-color: #ff0000
font-size: 16px
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)