Sha256: 54610b8e8c6286e3e5210b9dc8191f2a5f03271487fa571e1816454f304c7855

Contents?: true

Size: 665 Bytes

Versions: 1

Compression:

Stored size: 665 Bytes

Contents

// ---------------------------------------------------------------------------
// imports

@import "compass/css3/animation";
@import "compass/css3/transform";
@import "compass/css3/opacity";

// ---------------------------------------------------------------------------
// lightSpeedOut

@mixin animate-lightSpeedOut($class: $default-animation-class-mode) {
  $name: lightSpeedOut;
  @include keyframes($name) {
    0% {
      @include transform(translateX(0%) skewX(0deg));
      @include opacity(1); 
    }
    100% {
      @include transform(translateX(100%) skewX(-30deg));
      @include opacity(0); 
    } 
  }
  @include animation-class($name, $class) {}
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
animate-0.1.0 stylesheets/animate/lightSpeed/_lightSpeedOut.scss