Sha256: 079dca5bc3cc939a314b3cc4e85dc7efc70a5b8b28a416d1d28c7b4cf2658430
Contents?: true
Size: 1.5 KB
Versions: 1
Compression:
Stored size: 1.5 KB
Contents
// --------------------------------------------------------------------------- // Animations from Animate.css // Author : Dan Eden // URL : http://daneden.me/animate/ // --------------------------------------------------------------------------- // imports @import "helpers"; @import "animate/attention"; @import "animate/bounce"; @import "animate/fade"; @import "animate/flip"; @import "animate/lightspeed"; @import "animate/roll"; @import "animate/rotate"; @import "animate/special"; // --------------------------------------------------------------------------- // animate [ attention | bounce | fade | flip | // lightSpeed | rotate | special | all ] @mixin animate($sub: all, $class: $default-animation-class-mode) { $sub : compact($sub); $attention : yepnope($sub, all attention); $bounce : yepnope($sub, all bounce); $fade : yepnope($sub, all fade); $flip : yepnope($sub, all flip); $lightSpeed : yepnope($sub, all lightspeed); $rotate : yepnope($sub, all rotate); $special : yepnope($sub, all special); @if $attention { @include animate-attention (all, $class); } @if $bounce { @include animate-bounce (all, $class); } @if $fade { @include animate-fade (all, $class); } @if $flip { @include animate-flip (all, $class); } @if $lightSpeed { @include animate-lightSpeed (all, $class); } @if $rotate { @include animate-rotate (all, $class); } @if $special { @include animate-special (all, $class); } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
animate-0.1.alpha.0 | stylesheets/_animate.scss |