Skip to content

Instantly share code, notes, and snippets.

@mukwevhom
Created January 31, 2017 02:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mukwevhom/1e6623252ab7e3f9b0810f04c0aeb296 to your computer and use it in GitHub Desktop.
Save mukwevhom/1e6623252ab7e3f9b0810f04c0aeb296 to your computer and use it in GitHub Desktop.
Bounce Delay Loader
.contain
- 10.times do
%svg{:height => "80", :width => "210"}
%ellipse{:cx => "25", :cy => "20", :fill => "#1D0333", :rx => "10", :ry => "10", :fill => "none"}
$colors: #F1725D, #38BDAB, #9D30A5, #B779E2, #683893;
$left: 25px;
$count: 40px;
$timing: 600ms infinite ease-in-out;
$delay: 75ms;
@mixin jelly($num1, $num2) {
stroke: nth($colors, $num1);
cx: $left + ($count * $num2);
stroke-width: 3px;
animation: jump $timing;
opacity: .7;
animation-delay: $delay * $num2;
}
@mixin floor($num2) {
fill: #333333;
opacity: .05;
rx: 0;
ry: 0;
cx: $left + ($count * $num2);
cy: 48px;
animation: shadow $timing;
animation-delay: $delay * $num2;
}
.contain {
position: relative;
margin: 155px auto;
width: 200px;
}
svg {
position: absolute;
ellipse {
transform-origin: center;
}
&:nth-of-type(1) ellipse {
@include jelly(1, 0);
}
&:nth-of-type(2) ellipse {
@include jelly(2, 1);
}
&:nth-of-type(3) ellipse {
@include jelly(3, 2)
}
&:nth-of-type(4) ellipse {
@include jelly(4, 3)
}
&:nth-of-type(5) ellipse {
@include jelly(5, 4)
}
&:nth-of-type(6) ellipse {
@include floor(0)
}
&:nth-of-type(7) ellipse {
@include floor(1)
}
&:nth-of-type(8) ellipse {
@include floor(2)
}
&:nth-of-type(9) ellipse {
@include floor(3)
}
&:nth-of-type(10) ellipse {
@include floor(4)
}
}
$stroke-reg: 3px;
$dist: 10px;
@keyframes jump {
40% {
transform: translateY($dist * 2) scale(1.3);
opacity: .9;
}
40% {
rx: $dist;
ry: $dist;
stroke-width: $stroke-reg;
}
45% {
rx: $dist + 5;
ry: $dist - 3;
stroke-width: $stroke-reg + 1;
}
55% {
rx: $dist;
ry: $dist;
}
}
@keyframes shadow {
45% {
opacity: .15;
rx: $dist;
ry: $dist - 7;
transform: translateY($dist - 5) scale(1.3);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment