Futuristic animated perspective grid using CSS3.
Created
June 29, 2017 07:39
-
-
Save anonymous/cff009813da41dfff7276c868565b4c1 to your computer and use it in GitHub Desktop.
Perspective Digital Grid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="grid-wrapper"> | |
<div class="grid"> | |
<div class="vertical"> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
</div> | |
<div class="dots"> | |
<div class="dot"></div> | |
<div class="dot"></div> | |
<div class="dot"></div> | |
<div class="dot"></div> | |
<div class="dot"></div> | |
<div class="dot"></div> | |
<div class="dot"></div> | |
</div> | |
<div class="horizontal"> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
<div class="line"></div> | |
</div> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@gridLine: 1px; | |
html { | |
width:100%; | |
height:100%; | |
} | |
body { | |
width:100%; | |
height:100%; | |
background: #000; | |
} | |
.grid-wrapper { | |
position:absolute; | |
width:100%; | |
height:100%; | |
left:0; | |
bottom:0px; | |
perspective:200px; | |
} | |
.grid { | |
position:absolute; | |
top:0; | |
left:0; | |
right:0; | |
bottom:0; | |
width:100%; | |
height:100%; | |
margin-top:-50px; | |
transform: rotateX(45deg); | |
} | |
.line { | |
position:absolute; | |
background:rgba(0, 78, 255, 0.35); | |
-webkit-backface-visibility: hidden; | |
} | |
.vertical .line { | |
top:0; | |
left:0; | |
bottom:0; | |
width:@gridLine; | |
background: linear-gradient(top, rgba(16,18,20,0), rgba(0, 78, 255, 0.35)); | |
&:nth-child(1) { | |
left:10%; | |
} | |
&:nth-child(2) { | |
left:20%; | |
} | |
&:nth-child(3) { | |
left:30%; | |
} | |
&:nth-child(4) { | |
left:40%; | |
} | |
&:nth-child(5) { | |
left:50%; | |
} | |
&:nth-child(6) { | |
left:60%; | |
} | |
&:nth-child(7) { | |
left:70%; | |
} | |
&:nth-child(8) { | |
left:80%; | |
} | |
&:nth-child(9) { | |
left:90%; | |
} | |
&:nth-child(10) { | |
left:100%; | |
margin-left:-1px; | |
} | |
} | |
.horizontal .line { | |
top:0; | |
left:0; | |
right:0; | |
height:@gridLine; | |
z-index:2; | |
&:nth-child(1) { | |
top:10%; | |
opacity:0.2; | |
} | |
&:nth-child(2) { | |
top:20%; | |
opacity:0.3; | |
} | |
&:nth-child(3) { | |
top:30%; | |
opacity:0.4; | |
} | |
&:nth-child(4) { | |
top:40%; | |
opacity:0.5; | |
} | |
&:nth-child(5) { | |
top:50%; | |
opacity:0.6; | |
} | |
&:nth-child(6) { | |
top:60%; | |
opacity:0.7; | |
} | |
&:nth-child(7) { | |
top:70%; | |
opacity:0.8; | |
} | |
&:nth-child(8) { | |
top:80%; | |
opacity:0.9; | |
} | |
&:nth-child(9) { | |
top:90%; | |
opacity:0.95; | |
} | |
&:nth-child(10) { | |
top:100%; | |
margin-top:-1px; | |
opacity:1; | |
} | |
&:nth-child(11) { | |
opacity:0.05; | |
} | |
} | |
.dot { | |
position:absolute; | |
background:#57C1E8; | |
width: @gridLine; | |
height: @gridLine; | |
top:100%; | |
border-radius: @gridLine; | |
box-shadow: 0 0 2px #fff; | |
-webkit-backface-visibility: hidden; | |
&:nth-child(1) { | |
left:10%; | |
animation: moveDot 3s infinite; | |
} | |
&:nth-child(2) { | |
left:20%; | |
animation: moveDot 10s infinite; | |
} | |
&:nth-child(3) { | |
left:30%; | |
animation: moveDot 15s infinite; | |
} | |
&:nth-child(4) { | |
left:50%; | |
animation: moveDot 9s infinite; | |
} | |
&:nth-child(5) { | |
left:60%; | |
animation: moveDot 3s infinite; | |
} | |
&:nth-child(6) { | |
left:80%; | |
animation: moveDot 6s infinite; | |
} | |
&:nth-child(7) { | |
left:90%; | |
animation: moveDot 8s infinite; | |
} | |
} | |
@keyframes moveDot { | |
0% { top: 100%; opacity:1; } | |
100% { top: 0%; opacity:0; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment