-
-
Save sinergy/5218720 to your computer and use it in GitHub Desktop.
cross-browser CSS3 keyframe animation for SASS.
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
@include keyframe(fadeout) { | |
0% { | |
opacity: 1; | |
} | |
100% { | |
opacity: 0; | |
} | |
} | |
@include keyframe(changecolour) { | |
0% { | |
color: #000; | |
} | |
100% { | |
color: #FFF; | |
} | |
} |
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
@mixin keyframe ($animation_name) { | |
@-webkit-keyframes $animation_name { | |
@content; | |
} | |
@-moz-keyframes $animation_name { | |
@content; | |
} | |
@-o-keyframes $animation_name { | |
@content; | |
} | |
@keyframes $animation_name { | |
@content; | |
} | |
} |
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
/* | |
Example usage: | |
@include animation(10s, 5s, changecolour) | |
*/ | |
@mixin animation ($delay, $duration, $animation) { | |
-webkit-animation-delay: $delay; | |
-webkit-animation-duration: $duration; | |
-webkit-animation-name: $animation; | |
-webkit-animation-fill-mode: forwards; /* this prevents the animation from restarting! */ | |
-moz-animation-delay: $delay; | |
-moz-animation-duration: $duration; | |
-moz-animation-name: $animation; | |
-moz-animation-fill-mode: forwards; /* this prevents the animation from restarting! */ | |
-o-animation-delay: $delay; | |
-o-animation-duration: $duration; | |
-o-animation-name: $animation; | |
-o-animation-fill-mode: forwards; /* this prevents the animation from restarting! */ | |
animation-delay: $delay; | |
animation-duration: $duration; | |
animation-name: $animation; | |
animation-fill-mode: forwards; /* this prevents the animation from restarting! */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment