css实现宇宙星空运转效果代码

代码语言:html

所属分类:动画

代码描述:css实现宇宙星空运转效果代码

代码标签: 星空 运转 效果

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

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

<head>

  <meta charset="UTF-8">

  
  
  
<style>
*{
  border-radius: 100px;
}
body{
    font-size:30px;
  color: white
}

#ibandoc{
  color: white;
}

html {
  height: 100%;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  overflow: hidden;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    height: 100vh;
}

.night li
{
	position: absolute;
	list-style: none;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background-color:#fff;
	transform: rotate(45deg);
}

.night li:nth-child(1) {
  width: 16px;
	height: 16px;
	top:80%;
  left:25%;
  background-color: grey;
}

.night li:nth-child(2)
{
  top:40%;
  left:40%;
}

.night li:nth-child(3) {
  opacity: 0;
  top:20%;
  left:45%;
  width:5px;
  height: 37px;
  animation: meteor 1.5s infinite linear;
  animation-delay: 1s;

}

.night li:nth-child(4)
{
  top:5%;
  left:50%;
}

.night li:nth-child(5)
{
  opacity: 0;
  top:20%;
  left:55%;
  width:1px;
  height: 15px;
  animation: meteor 1.5s infinite linear;
}

@keyframes meteor
{

10%
{
  opacity: 2;
}
80%	
{
  left: 5%;
  top:  85%;
  opacity: 0;
}
}
.planet {
    width: 285px;
    height: 285px;
    background-image: url("//repo.bfw.wiki/bfwrepo/image/60593e2010464.png");
);
    border-radius: 50%;
    background-size: cover;
    box-shadow: -80px -20px 70px 2px rgb(29, 28, 28) inset, 3px 0 20px rgba(206, 182, 138, 0.555);
    animation: spin 10s linear reverse infinite;
    transform: rotate(30deg);
    backface-visibility: hidden;
    
}

#stars {
  border-radius: 50%;
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow: 1400px 238px #FFF , 818px 1482px #FFF , 752px 469px #FFF , 1702px 699px #FFF , 1381px 729px #FFF , 997px 1706px #FFF , 1153px 392px #FFF , 489px 1025px #FFF , 1286px 1445px #FFF , 494px 1900px #FFF , 694px 1027px #FFF , 1727px 1801px #FFF , 408px 873px #FFF , 1944px 1548px #FFF , 1112px 681px #FFF , 468px 1624px #FFF , 713px 1132px #FFF , 391px 685px #FFF , 1609px 1121px #FFF , 238px 808px #FFF , 1639px 1623px #FFF , 396px 138px #FFF , 66px 934px #FFF , 742px 1584px #FFF , 127px 722px #FFF , 1783px 76px #FFF , 750px 14px #FFF , 985px 1896px #FFF , 1985px 349px #FFF , 1393px 830px #FFF , 87px 540px #FFF , 563px 1109px #FFF , 165px 679px #FFF , 750px 1783px #FFF , 505px 620px #FFF , 1350px 193px #FFF.........完整代码请登录后点击上方下载按钮下载查看

网友评论0