这篇文章给大家带来的内容是关于如何使用纯css实现太阳和地球和月亮的运转模型动画 ,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
效果预览

源代码下载
https://github.com/comehope/front-end-daily-challenges
代码解读
定义dom,容器中包含 3 个元素:
居中显示:
立即学习“前端免费学习笔记(深入)”;
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background-color: black;}
定义容器尺寸:
.container { font-size: 10px; width: 40em; height: 40em; position: relative;}
画出太阳:
.sun { position: absolute; top: 15em; left: 15em; width: 10em; height: 10em; background-color: yellow; border-radius: 50%; box-shadow: 0 0 3em white;}
画出地球和月球的轨迹:
.earth,.moon { position: absolute; border-style: solid; border-color: white transparent transparent transparent; border-width: 0.1em 0.1em 0 0; border-radius: 50%;}.earth { top: 5em; left: 5em; width: 30em; height: 30em;}.moon { top:0; right: 0; width: 8em; height: 8em;}
用伪元素画出地球和月球:
.earth::before,.moon::before { position: absolute; border-radius: 50% ; content: '';}.earth::before { top: 2.8em; right: 2.5em; height: 3em; width: 3em; background-color: aqua;}.moon::before { top: 0.8em; right: 0.2em; width: 1.2em; height: 1.2em; background-color: silver;}
设置运转动画效果:
/* rotation period 365.2422 days */.earth { animation: orbit 36.5s linear infinite; }/* rotation period 27.322 days */.moon { animation: orbit 2.7s linear infinite;}@keyframes orbit { to { transform: rotate(360deg); }}
最后,隐藏可能会出现在容器外的部分:
body { overflow: hidden;}
大功告成!
相关推荐:
如何使用纯CSS实现一个足球场的俯视图(附源码)
如何使用纯CSS实现蝴蝶标本的展示框效果
以上就是如何使用纯CSS实现太阳和地球和月亮的运转模型动画的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1611376.html
微信扫一扫
支付宝扫一扫