Animation-duration function added
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
parent
2655a6fed0
commit
fcd7e33186
14
_scss/utilities/_animationduration.scss
Normal file
14
_scss/utilities/_animationduration.scss
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
// Animation Duration
|
||||||
|
//
|
||||||
|
// The animation-duration property defines duration of a single animation cycle.
|
||||||
|
//
|
||||||
|
// Values: <time>
|
||||||
|
// Default: 0s
|
||||||
|
//
|
||||||
|
// https://www.w3.org/TR/css-animations-1/#animation-duration
|
||||||
|
@mixin animation-duration($value: 0s) {
|
||||||
|
-webkit-animation-duration: $value;
|
||||||
|
-moz-animation-duration: $value;
|
||||||
|
-o-animation-duration: $value;
|
||||||
|
animation-duration: $value;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user