12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * Animation mixin.
- */
- @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;
- -o-animation: $animations;
- animation: $animations;
- }
-
- /**
- * Keyframes mixin.
- */
- @mixin keyframes($animationName) {
- @-webkit-keyframes #{$animationName} {
- @content;
- }
- @-moz-keyframes #{$animationName} {
- @content;
- }
- @-o-keyframes #{$animationName} {
- @content;
- }
- @keyframes #{$animationName} {
- @content;
- }
- }
|