Sha256: 3421c0b9183993fcd01f7ede6720d7d688e1d43d6d5a494e83a311bdd964505e

Contents?: true

Size: 1.55 KB

Versions: 406

Compression:

Stored size: 1.55 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.

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

// Individual Animation Properties
@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

406 entries across 395 versions & 17 rubygems

Version Path
daiblogs-0.1.0 assets/_sass/bourbon/css3/_animation.scss
hanuman-0.3.0 _sass/bourbon/css3/_animation.scss
hanuman-0.2.0 _sass/bourbon/css3/_animation.scss
hanuman-0.1.0 _sass/bourbon/css3/_animation.scss
wrgem-0.0.55 lib/generators/wrstart/template/vendor/assets/components/bourbon/dist/css3/_animation.scss
wrgem-0.0.54 lib/generators/wrstart/template/vendor/assets/components/bourbon/dist/css3/_animation.scss
wrgem-0.0.53 lib/generators/wrstart/template/vendor/assets/components/bourbon/dist/css3/_animation.scss
wrgem-0.0.52 lib/generators/wrstart/template/vendor/assets/components/bourbon/dist/css3/_animation.scss
wrgem-0.0.51 lib/generators/wrstart/template/vendor/assets/components/bourbon/dist/css3/_animation.scss
moovui-0.1.4 app/assets/stylesheets/bourbon/css3/_animation.scss
smock-0.1.268 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.267 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.266 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
wrgem-0.0.50 lib/generators/wrstart/template/vendor/assets/components/bourbon/dist/css3/_animation.scss
wrgem-0.0.49 lib/generators/wrstart/template/vendor/assets/components/bourbon/dist/css3/_animation.scss
smock-0.1.265 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.264 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.263 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.262 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.261 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss