js+css实现太阳系行星轨道运行动画效果代码

代码语言:html

所属分类:动画

代码描述:js+css实现太阳系行星轨道运行动画效果代码

代码标签: js css 太阳系 行星 轨道 运行 动画

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

<!DOCTYPE html>
<html lang="en">

<head>
   
<meta charset="UTF-8">
   
<style>
        body,html {
          background-color:black;
         
        }
       
        #sun {  width: 90px;  height: 90px; border-radius:100px ;position: absolute;  background: blue;  border-color: blue;left:46.5vw;top:46.5vh; z-index:1;background-image: radial-gradient(yellow, orange,  orange);}
       
        #orbity1 {  width: 10px;  height: 10px; position: absolute;  background: blue;  border-color: blue;left:50vw;top:50vh;}
        #planet1 {  width: 10px;  height: 10px;  border-radius: 50px;  position: absolute;  background-image: radial-gradient(#504E51, #97979F);}
       
        #orbity2 {  width: 10px;  height: 10px; position: absolute;  background: red;  border-color: blue;left:50vw;top:50vh;}
        #planet2 {  .........完整代码请登录后点击上方下载按钮下载查看

网友评论0