This package makes the usage of the beautiful https://daneden.github.io/animate.css/ very easy by bundling animate-sass for selective animation style including and a jQuery plugin for easy usage on your website.
Save bandwith and time =)
$ bower install jquery.animate.css --save
or
$ npm install jquery.animate.css --save
You have to include the animate-sass into your sass sources and enable the animations you want to use later on your website.
A typical sass file looks like:
// $use-all: true
$use-bounce: true
@import "[path_to_bower_components]/creative-workflow.animate-sass/animate"
Note: For all configurations look at the file [path_to_bower_components]/animate-sass/helpers/_settings.scss
Just load the javascript file [path_to_bower_components]/jquery.animate.css/dist/jquery.animate.css.js
.
Note: Dont't forgett to include your compiled css file ^^.
$('img').fadeOut(500)
.animateCss('bounceOut', 500);
Triggers an animate.css animation included by sass-animate.
- animateCssAnimation: The animation that should be triggered.
- duration: Animation duration in milli seconds.
- complete: An optional callback function when animation finishes.
- https://github.com/creative-workflow/jquery.animate.css
- https://travis-ci.org/creative-workflow/jquery.animate.css
- https://codeclimate.com/github/creative-workflow/jquery.animate.css
- http://bower.io/search/?q=jquery.animate.css
- https://www.npmjs.com/search?q=jquery.animate.css
Check out the Contributing Guidelines