div+css实现太空宇宙中马路行驶穿越动画效果代码

代码语言:html

所属分类:动画

代码描述:div+css实现太空宇宙中马路行驶穿越动画效果代码

代码标签: div css 太空 宇宙 马路 行驶 穿越 动画

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

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

<head>
  <meta charset="UTF-8">
  

  
  
<style>
:root {
  --color00: #000007;
  --color16: #161616;
  --yellow: yellow;
  --white: white;
}
body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color00);
  overflow: hidden;
  perspective: 200px;
  perspective-origin: center 60%;
  transform-style: preserve-3d;
}
@property --road {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --hue {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@property --float {
  syntax: "<percentage>";
  inherits: false;
  initial-value: -0%;
}
.starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  perspective: 800px;
}
.star-layer,
.star-layer:before {
  position: absolute;
  top: 50%;
  background: var(--white);
  border-radius: 50%;
  width: 3px;
  height: 3px;
}
.star-layer {
  left: 45%;
  animation: starMotion calc(var(--i) * 8s) calc(var(--i) * .05s) linear infinite;
}
.star-layer:before {
  content: '';
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(10px 10px 10px rgba(255,255,255,.5));
}
.star-layer:nth-child(1):before {
  box-shadow: 
    -47px 387px var(--white), 198px 80px var(--white),
    -468px -364px var(--white), 168px 311px var(--white),
    -241px -152px var(--white), -190px -218px var(--white),
    -623px 233px var(--white), 305px -310px var(--white),
    -468px 293px var(--white), 441px 383px var(--white),
    -355px 167px var(--white), 424px -83px var(--white),
    -298px 242px var(--white), 303px 175px var(--white),
    -55px -389px var(--white), -262px 31px var(--white),
    150px 250px var(--white), -320px 90px var(--white),
    200px -200px var(--white), -450px -150px var(--white),
    -800px 200px var(--white), 750px -350px var(--white),
    -900px 100px var(--white), 850px -450px var(--white),
    -1000px 300px var(--white), 950px -550px var(--white),
    -1100px 400px var(--white), 1050px -650px var(--white);
}
.star-layer:nth-child(2):before {
  box-shadow: 
    416px 409px var(--white), -373px -312px var(--white),
    -226px 340px var(--white), 312px -73px var(--white),
    -332px -18px var(--white), -402px -171px var(--white),
    -324px 280px var(--white), 479px -364px var(--white),
    -366px 392px var(--white), -227px 34px var(--white),
    -26px 314px var(--white), 360px 429px var(--white),
    -103px -368px var(--white), 351px 143px var(--white),
    250px 350px var(--white), -470px 20px var(--white),
    300px -300px var(--white), -550px -250px var(--white),
    750px 200px var(--white), -800px 150px var(--white),
    850px -250px var(--white), -900px 50px var(--white),
    950px 350px var(--white), -1000px 100px var(--white),
    1050px -150px var(--white), -1100px 400px var(--white);
}
.star-layer:nth-child(3):before {
  box-shadow: 
    516px 509px var(--white), -273px -212px var(--white),
    -126px 440px v.........完整代码请登录后点击上方下载按钮下载查看

网友评论0