Sha256: 3e5f71844cc26c85843a2d2e325b62e05be12856bf08e1891ee032d41816333e
Contents?: true
Size: 647 Bytes
Versions: 1
Compression:
Stored size: 647 Bytes
Contents
// --------------------------------------------------------------------------- // imports @import "compass/css3/animation"; @import "compass/css3/transform"; @import "compass/css3/opacity"; // --------------------------------------------------------------------------- // rollIn @mixin animate-rollIn($class: $default-animation-class-mode) { $name: rollIn; @include keyframes($name) { 0% { @include opacity(0); @include transform(translateX(-100%) rotate(-120deg)); } 100% { @include opacity(1); @include transform(translateX(0px) rotate(0deg)); } } @include animation-class($name, $class) {} }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
animate-0.1.0 | stylesheets/animate/roll/_rollIn.scss |