aboutsummaryrefslogtreecommitdiff
path: root/_scss/utilities/_animationfillmode.scss
blob: 570f6ea9d840a838cc85c6320acb5a7f5adc9318 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}