css实现日食月食动画效果代码
代码语言:html
所属分类:动画
代码描述:css实现日食月食动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
*, *:after, *:before {
box-sizing: border-box;
}
body {
-webkit-animation: 10s linear light infinite;
animation: 10s linear light infinite;
}
body:after {
content: "";
position: absolute;
left: 0%;
top: 50%;
width: 2px;
height: 2px;
border-radius: 50%;
color: #fff;
background: currentcolor;
box-shadow: 30px -100px, 50px -30px, 100px -140px, 180px -240px, 130px 100px, 170px -30px, 200px -40px, 120px -40px, 230px 10px, 270px -30px, 200px -10px, 220px -80px;
}
body:before {
content: "";
position: absolute;
righ.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0