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
smock-0.1.244 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.243 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.242 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.241 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.240 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.239 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.2 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.1 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.238 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.237 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.236 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.235 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.234 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.233 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.232 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.231 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.230 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.229 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.228 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss
smock-0.1.227 app/assets/stylesheets/thirdparty/bourbon/css3/_animation.scss