Added animation direction mixin

This commit is contained in:
Max Lynch
2014-03-18 15:57:10 -05:00
parent 9db69cfda4
commit 00bb385af7

View File

@@ -354,6 +354,11 @@
-moz-animation-duration: $duration;
animation-duration: $duration;
}
@mixin animation-direction($direction) {
-webkit-animation-direction: $direction;
-moz-animation-direction: $direction;
animation-direction: $direction;
}
@mixin animation-timing-function($animation-timing) {
-webkit-animation-timing-function: $animation-timing;
-moz-animation-timing-function: $animation-timing;