Added animation-delay

This commit is contained in:
Josh Sherman 2013-05-05 18:28:08 -04:00
parent 194a8241db
commit daa2621aa9
2 changed files with 13 additions and 0 deletions

View file

@ -19,6 +19,12 @@ License: This work is dedicated to the public domain and is free for all uses, c
Mixins Mixins
------ ------
### Animations
.animation-delay(duration)
Sets the delay / duration of the animation
### Backgrounds ### Backgrounds
.background-clip(padding-box) .background-clip(padding-box)

View file

@ -157,3 +157,10 @@
.debug(@color: red, @sizeStyle: 1px solid) { .debug(@color: red, @sizeStyle: 1px solid) {
border: @sizeStyle @color; border: @sizeStyle @color;
} }
.animation-delay(@duration) {
-webkit-animation-delay: @duration;
-moz-animation-delay: @duration;
-o-animation-delay: @duration;
-ms-animation-delay: @duration;
animation-delay: @duration;
}