博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
纯 CSS 创作一个太阳、地球、月亮的运转模型
阅读量:6350 次
发布时间:2019-06-22

本文共 1712 字,大约阅读时间需要 5 分钟。

在这里插入图片描述

效果预览

按下右侧的“点击预览”按钮可以在当前页面预览,点击链接可以全屏预览。

可交互视频

此视频是可以交互的,你可以随时暂停视频,编辑视频中的代码。

请用 chrome, safari, edge 打开观看。

源代码下载

每日前端实战系列的全部源代码请从 github 下载:

代码解读

定义dom,容器中包含 3 个元素:

<div class="container">    <div class="sun"></div>    <div class="earth">        <div class="moon"></div>    </div></div>

居中显示:

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;}

大功告成!

原文地址:https://segmentfault.com/a/1190000015313341

转载地址:http://iutla.baihongyu.com/

你可能感兴趣的文章
Percona Server安装
查看>>
函数为左边表达式
查看>>
2015.06.04 工作任务与心得
查看>>
icinga2使用587端口发邮件
查看>>
hpasmcli查看HP服务器内存状态
查看>>
极客工具
查看>>
【14】Python100例基础练习(1)
查看>>
boost bind使用指南
查看>>
使用ntpdate更新系统时间
查看>>
Android M 特性 Doze and App Standby模式详解
查看>>
IE FF(火狐) line-height兼容详解
查看>>
谷歌Pixel 3吸引三星用户, 但未动摇iPhone地位
查看>>
python获取当前工作目录
查看>>
VUE中使用vuex,cookie,全局变量(少代码示例)
查看>>
grep -w 的解析_学习笔记
查看>>
量化交易之启航
查看>>
TX Text Control文字处理教程(3)打印操作
查看>>
CENTOS 7 如何修改IP地址为静态!
查看>>
MyCat分片算法学习(纯转)
查看>>
IO Foundation 3 -文件解析器 FileParser
查看>>