Sha256: 44f359541f9621b91e575e0b057bb24db526efcc50d3b9a82a84efcd4e876520

Contents?: true

Size: 1.46 KB

Versions: 132

Compression:

Stored size: 1.46 KB

Contents

// http://www.w3.org/TR/css3-animations/#the-animation-name-property-
// Each of these mixins support comma separated lists of values, which allows different transitions for individual properties to be described in a single style rule. Each value in the list corresponds to the value at that same position in the other properties.

@mixin animation($animations...) {
  @include prefixer(animation, $animations, webkit moz spec);
}

@mixin animation-name($names...) {
  @include prefixer(animation-name, $names, webkit moz spec);
}

@mixin animation-duration($times...) {
  @include prefixer(animation-duration, $times, webkit moz spec);
}

@mixin animation-timing-function($motions...) {
  // ease | linear | ease-in | ease-out | ease-in-out
  @include prefixer(animation-timing-function, $motions, webkit moz spec);
}

@mixin animation-iteration-count($values...) {
  // infinite | <number>
  @include prefixer(animation-iteration-count, $values, webkit moz spec);
}

@mixin animation-direction($directions...) {
  // normal | alternate
  @include prefixer(animation-direction, $directions, webkit moz spec);
}

@mixin animation-play-state($states...) {
  // running | paused
  @include prefixer(animation-play-state, $states, webkit moz spec);
}

@mixin animation-delay($times...) {
  @include prefixer(animation-delay, $times, webkit moz spec);
}

@mixin animation-fill-mode($modes...) {
  // none | forwards | backwards | both
  @include prefixer(animation-fill-mode, $modes, webkit moz spec);
}

Version data entries

132 entries across 125 versions & 21 rubygems

Version Path
middleman-core-4.6.0 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.5.1 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.5.0 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.4.3 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.4.2 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.4.0 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.3.11 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.3.10 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.3.8 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.3.7 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/middleman-core-4.3.3/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.3.6 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.3.5 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.3.4 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.3.3 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.3.2 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.3.1 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
middleman-core-4.3.0 fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss
federalist-basic-report-theme-0.1.7 _sass/uswds/lib/css3/_animation.scss
uswds-jekyll-4.2.0 _sass/uswds/lib/css3/_animation.scss