如何使用纯CSS绘制可爱玉兔
发表于:2024-11-28 作者:千家信息网编辑
千家信息网最后更新 2024年11月28日,这篇文章给大家分享的是有关如何使用纯CSS绘制可爱玉兔的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。玉兔效果图:实现代码:html标签
千家信息网最后更新 2024年11月28日如何使用纯CSS绘制可爱玉兔
这篇文章给大家分享的是有关如何使用纯CSS绘制可爱玉兔的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
玉兔效果图:
实现代码:
html标签
css布局
* { padding: 0; margin: 0; } body { background: rgb(38, 44, 56); } /* 大盒子 */ .rabit { width: 300px; height: 300px; position: relative; margin: 120px auto; }
头
.head { width: 222px; height: 213px; border-radius: 50%; background: linear-gradient(1deg, #e2e2e2 1%, rgb(255, 192, 236) 16%, rgb(255, 192, 236)); box-shadow: 0 0 2px 0 rgb(255, 192, 236); position: absolute; z-index: 2; left: 39px; top: 43px; }
耳朵
/* 耳朵 */ .ear { width: 65px; height: 128px; background: rgb(255, 192, 236); box-shadow: 0 0 2px 0 rgb(255, 192, 236); border-radius: 80px 80px 65px 65px/53px 53px 254px 254px; position: absolute; left: 65px; top: -49px; transform: rotateZ(-24deg); }/* 右耳 */ .ear.right { transform: scale(-1, 1) rotateZ(-24deg); left: 173px; top: -51px; } /* 耳朵阴影 */ .innerear { width: 50px; height: 100px; background: rgb(255, 192, 236); box-shadow: 0 0 2px 0 rgb(255, 192, 236); background: linear-gradient(-196deg, #e2e2e2 9%, rgb(255, 192, 236)); border-radius: 80px 80px 65px 65px/53px 53px 254px 254px; transform: rotateZ(-24deg); position: absolute; left: 73px; top: -33px; }/* 右面阴影 */ .innerear.right { transform: scale(-1, 1) rotateZ(-24deg); left: 179px; top: -35px; }
眼睛
/* 眼睛 */ .eye { width: 48px; height: 6px; background: rgb(0, 0, 0); border-radius: 3px; position: absolute; left: 65px; top: 119px; z-index: 3; transform: rotate(-2deg); }/* 右边眼睛 */ .eye.right { left: 195px; top: 119px; transform: rotate(2deg); }
害羞圆点
/* 害羞圆 */ .shy { width: 31px; height: 25px; border-radius: 50%; background-color: #e9a998; position: absolute; left: 85px; top: 140px; z-index: 3; }/* 右边害羞圆 */ .shy.right { left: 184px; top: 141px; transform: rotate(-8deg); }
嘴巴
/* 嘴 */ .mouth { width: 16px; height: 10px; border: 4px solid black; border-right: 4px solid black; border-bottom: 4px solid black; border-left: 4px solid transparent; border-top: 4px solid transparent; border-radius: 50%; transform: scale(-1.2, 1) rotate(43deg); position: absolute; left: 126px; top: 180px; z-index: 3; }/* 嘴右边 */ .mouth.right { transform: scale(1.2, 1) rotate(43deg); position: absolute; left: 146px; top: 180px; }
肚子
.body { width: 128px; height: 140px; box-shadow: 0 0 2px 0 rgb(255, 255, 255); background: -webkit-radial-gradient(50% 0%, farthest-side circle, #CDC9C9 2%, rgb(255, 192, 236) 50%, rgb(255, 192, 236)); position: absolute; left: 85px; top: 219px; z-index: 1; border-radius: 0px 0px 53px 54px/0px 0px 53px 53px; }
手臂
/* 手 */ .arm { width: 43px; height: 100px; box-shadow: 0 0 2px 0 rgb(255, 192, 236); background: linear-gradient(-66deg, #e2e2e2 18%, rgb(255, 192, 236) 37%, rgb(255, 192, 236)); border-radius: 120px 120px 280px 280px/120px 120px 800px 800px; position: absolute; left: 59px; top: 225px; transform: rotate(25deg); } /* 右手 */ .arm.right { left: 200px; top: 225px; background: linear-gradient(66deg, #e2e2e2 8%, rgb(255, 192, 236) 37%, rgb(255, 192, 236)); transform: rotate(-17deg); animation: hop 2s linear infinite; } @keyframes hop { 20% { transform: rotate(-40deg) translateX(18px); box-shadow: -0.2em 1em 0 -1em #333; } }
腿
/* 腿 */ .leg { width: 38px; height: 62px; box-shadow: 0 0 2px 0 rgb(255, 192, 236); background: linear-gradient(-66deg, #e2e2e2 18%, rgb(255, 192, 236) 37%, rgb(255, 192, 236)); border-radius: 120px 120px 680px 280px/120px 120px 800px 800px; position: absolute; left: 88px; top: 313px; transform: rotate(-3deg); } /* 右腿 */ .leg.right { background: linear-gradient(-66deg, #e2e2e2 18%, rgb(255, 192, 236) 37%, rgb(255, 192, 236)); transform: scale(-1, 1) rotate(-3deg); left: 173px; top: 313px; }
感谢各位的阅读!关于"如何使用纯CSS绘制可爱玉兔"这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
玉兔
害羞
右边
眼睛
耳朵
可爱
内容
更多
篇文章
阴影
不错
实用
代码
右手
右耳
右腿
嘴巴
圆点
布局
手臂
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
包头网络技术怎么样
关于网络安全的法律有什么
本科生论文进国家数据库吗
数据库英语成绩提高5%
视频服务器管理口与业务口
服务器加装硬盘之后怎么设置
生态家网络技术有限公司
做软件开发的取个什么名字好
远程电脑服务器
长沙软件开发工司
互联网广告与科技
甘肃网信办网络安全检查
审计局网络安全部署会议纪要
江西综合软件开发单价
数据库创建后如何保存
u8因为数据库正在使用
清远同城家政服务软件开发公司
牧原软件开发岗怎么样
s什么的软件开发
尚鹏高科技跨境互联网平台
广东广联互联网科技有限公司
我们无法从服务器恢复
ctf网络安全大赛入门
供应链网络安全
抖音服务器更新中什么意思
昨天罗湖区网络安全主题班会
计算机系统数据库安装
江西综合软件开发单价
沈阳新恒基软件开发
软件开发过程纪录片