Skip to content

Instantly share code, notes, and snippets.

@wintercounter
Created July 16, 2014 21:02
Show Gist options
  • Save wintercounter/aca6db98bf822567f793 to your computer and use it in GitHub Desktop.
Save wintercounter/aca6db98bf822567f793 to your computer and use it in GitHub Desktop.
@mixin animation($animate...) {
$max: length($animate);
$animations: '';
@for $i from 1 through $max {
$animations: #{$animations + nth($animate, $i)};
@if $i < $max {
$animations: #{$animations + ", "};
}
}
-webkit-animation: $animations;
-moz-animation: $animations;
-ms-animation: $animations;
-o-animation: $animations;
animation: $animations;
}
@mixin keyframes($animationName) {
@at-root{
@-webkit-keyframes #{$animationName} {
@content;
}
@-moz-keyframes #{$animationName} {
@content;
}
@-o-keyframes #{$animationName} {
@content;
}
@keyframes #{$animationName} {
@content;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment