aglobof-sass.animations
v1.0.2
Published
a glob of sass animation mixins
Downloads
1
Readme
sass.animations
A glob of sass animation mixins
Installation
via bower
$ bower install aglobof-sass.animations --save-dev
via npm
$ npm install aglobof-sass.animations --save-dev
Usage
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.anitmations/glob";
Animate
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);
}
Transform
TBD
Translate
TBD