Circle Asplosions
Some exploding, responsive circles
Based on https://31.media.tumblr.com/d7d763662943e403fba434dea6292041/tumblrmyu59tfV911r2geqjo1500.gif
%div.container
%div.container
- (1..24).each do |c|
%div.circle
html,body { height:100%; background:black; overflow-x:hidden; }
html,body { height:100%; background:black; overflow-x:hidden; }
.container {
position:relative;
height: 0;
padding-bottom: 100%;
}
.circle {
position:absolute;
top:50%; left:50%;
width:90%; height:90%;
border:5px solid white;
border-radius:50%;
margin-left:-30%; margin-top:-30%;
animation-delay: inherit;
transform:scale(.333);
}
.circle:nth-of-type(6n ) { margin-top:-70%; margin-left:-60%; }
.circle:nth-of-type(6n+1) { margin-top:-70%; margin-left:-30%; }
.circle:nth-of-type(6n+2) { margin-top:-45%; margin-left:-15%; }
.circle:nth-of-type(6n+3) { margin-top:-18%; margin-left:-30%; }
.circle:nth-of-type(6n+4) { margin-top:-18%; margin-left:-60%; }
.circle:nth-of-type(6n+5) { margin-top:-45%; margin-left:-75%; }
.circle:nth-child(bezier(0,.61,.5,1) infinite; }
.circle:nth-child(child(4.5s cubic-bezier(0,.61,.5,1) infinite; }
.circle:nth-child(child(3s cubic-bezier(0,.61,.5,1) infinite; }
.circle:nth-child(child(1.5s cubic-bezier(0,.61,.5,1) infinite; }
@keyframes scale {
0% { opacity:0; transform:scale(.1); }
5% { opacity:1; }
100% { opacity:0; transform:scale(1); }
}