纯css模拟日食全过程

代码语言:html

所属分类:动画

代码描述:纯css模拟日食全过程

代码标签: 日食 全过程

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
.sun {
  background-color: #F6C744;
  height: 50vmin;
  width: 50vmin;
  border-radius: 50%;
}
.sun:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: thats-no-moon 6s infinite, night-and-day 6s infinite;
          animation: thats-no-moon 6s infinite, night-and-day 6s in.........完整代码请登录后点击上方下载按钮下载查看

网友评论0