Created
December 12, 2012 07:16
-
-
Save matthewcopeland/4265753 to your computer and use it in GitHub Desktop.
A fun animation with sass loops.
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
$campfire-size: 100px; | |
#campfire { | |
position: fixed; | |
right: $gutter; | |
bottom: $gutter/2; | |
height: $campfire-size; | |
width: $campfire-size; | |
background: $campfire-2x; | |
background-size: 100%; | |
}//#campfire | |
//------------------------------------------------------------------ | |
// stars | |
$star-size: 120px; | |
.star { | |
position: fixed; | |
height: $star-size; | |
width: $star-size; | |
background: $star; | |
background-size: 100%; | |
}//.star | |
// animation | |
$star-start-point-x: $gutter + ($campfire-size/2 - $star-size/2); | |
$star-start-point-y: 110%; | |
$star-end-point-x: 100%; | |
@function star-ending-point-x ($i) { | |
@return $star-end-point-x - (25% * $i) } | |
$star-end-point-y: 4%; | |
@function star-ending-point-y ($i) { | |
@return $star-end-point-y + (3% * $i) } | |
@for $i from 1 through 3 { | |
.star { | |
&:nth-of-type(#{$i}) { | |
top: star-ending-point-y($i); | |
right: star-ending-point-x($i); | |
-webkit-animation: risingstar-#{$i} #{4 + $i*2}s, spinner #{4 + $i*2}s infinite linear; | |
}//nth-of-type | |
}//star | |
@-webkit-keyframes risingstar-$i { | |
0% { | |
right: $star-start-point-x; | |
top: $star-start-point-y; } | |
40% { right: $star-start-point-x; } | |
100% { | |
right: star-ending-point-x($i); | |
top: star-ending-point-y($i); } | |
}//keyframes | |
}//@for | |
@-webkit-keyframes spinner { | |
0% { -webkit-transform: rotate(0deg); } | |
25% { -webkit-transform: rotate(90deg); } | |
50% { -webkit-transform: rotate(180deg); } | |
75% { -webkit-transform: rotate(270deg); } | |
100% { -webkit-transform: rotate(360deg); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment