A glob of sass animation mixins
via bower
$ bower install aglobof-sass.animations --save-dev
via npm
$ npm install aglobof-sass.animations --save-dev
Include a partial in your root sass file.
@import "bower_components/aglobof-sass.animations/animation";
Or, glob all the partials
@import "bower_components/aglobof-sass.animations/glob";
Call animations all over the place like a boss
@include keyframe(load-in-slow) {
0% { opacity: 0; }
100% { opacity: 1; }
}
.content {
@include animation(load-in-slow, 1s, ease-in-out);
}
TBD
TBD