Added animation-delay
This commit is contained in:
parent
194a8241db
commit
daa2621aa9
2 changed files with 13 additions and 0 deletions
|
@ -19,6 +19,12 @@ License: This work is dedicated to the public domain and is free for all uses, c
|
|||
Mixins
|
||||
------
|
||||
|
||||
### Animations
|
||||
|
||||
.animation-delay(duration)
|
||||
|
||||
Sets the delay / duration of the animation
|
||||
|
||||
### Backgrounds
|
||||
|
||||
.background-clip(padding-box)
|
||||
|
|
|
@ -157,3 +157,10 @@
|
|||
.debug(@color: red, @sizeStyle: 1px solid) {
|
||||
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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue