This is a port of Dan Eden's Animate.css for SASS.
.your-class-name {
@include bounceIn();
}
The mixin includes configurable options to customize the delay, duration, function and fill-mode of your animations.
.your-class-name {
@include bounceIn(
$duration: 1s,
$delay: .2s,
$function: ease,
$fill-mode: both
);
}
Animate.css and Animate.scss are both licensed under the MIT license. (http://opensource.org/licenses/MIT)
Thanks!