Animation-fill-mode function added
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
parent
63cdb71ca2
commit
2655a6fed0
15
_scss/utilities/_animationfillmode.scss
Normal file
15
_scss/utilities/_animationfillmode.scss
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
// Animation Fill Mode
|
||||||
|
//
|
||||||
|
// The animation-fill-mode property defines what values are applied by the
|
||||||
|
// animation outside the time it is executing.
|
||||||
|
//
|
||||||
|
// Values: none | forwards | backwards | both
|
||||||
|
// Default: none
|
||||||
|
//
|
||||||
|
// https://www.w3.org/TR/css-animations-1/#animation-fill-mode
|
||||||
|
@mixin animation-fill-mode($value: none) {
|
||||||
|
-webkit-animation-fill-mode: $value;
|
||||||
|
-moz-animation-fill-mode: $value;
|
||||||
|
-o-animation-fill-mode: $value;
|
||||||
|
animation-fill-mode: $value;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user