Go to file
Daniel Eden 25448e347c Big update. Better file organisation, prefix dropping, workflow improvements. 2013-11-11 15:32:40 -08:00
source Big update. Better file organisation, prefix dropping, workflow improvements. 2013-11-11 15:32:40 -08:00
.gitignore Big update. Better file organisation, prefix dropping, workflow improvements. 2013-11-11 15:32:40 -08:00
Gruntfile.js Big update. Better file organisation, prefix dropping, workflow improvements. 2013-11-11 15:32:40 -08:00
README.md Big update. Better file organisation, prefix dropping, workflow improvements. 2013-11-11 15:32:40 -08:00
animate.css Big update. Better file organisation, prefix dropping, workflow improvements. 2013-11-11 15:32:40 -08:00
animate.min.css Big update. Better file organisation, prefix dropping, workflow improvements. 2013-11-11 15:32:40 -08:00
bower.json Big update. Better file organisation, prefix dropping, workflow improvements. 2013-11-11 15:32:40 -08:00
package.json Big update. Better file organisation, prefix dropping, workflow improvements. 2013-11-11 15:32:40 -08:00

README.md

#Animate.css Just-add-water CSS animation

animate.css is a bunch of cool, fun, and cross-browser animations for you to use in your projects. Great for emphasis, home pages, sliders, and general just-add-water-awesomeness.

##Usage To use animate.css in your website, simply drop the stylesheet into your document's <head>, and add the class animated to an element, along with any of the animation names. That's it! You've got a CSS animated element. Super!

<head>
	<link rel="stylesheet" href="animate.min.css">
</head>

You can do a whole bunch of other stuff with animate.css when you combine it with jQuery or add your own CSS rules. Dynamically add animations using jQuery with ease:

$('#yourElement').addClass('animated bounceOutLeft');

You can change the duration of your animations, add a delay or change the number of times that it plays!

#yourElement {
	-vendor-animation-duration: 3s;
	-vendor-animation-delay: 2s;
	-vendor-animation-iteration-count: infinite;
}

Note: be sure to replace "vendor" in the CSS with the applicable vendor prefixes (webkit, moz, ms, o)

Custom Builds

Animate.css is powered by Grunt, and you can create custom builds pretty easily. First of all, youll need Grunt and all other dependencies:

$ cd path/to/animate.css/
$ sudo npm install

Next, run grunt watch to watch for changes and compile your custom builds. For example, if you want only the “attention seekers”, simply delete them from the repository, or change Gruntfile.js to only concatenate the files you want:

concat: {
  dist: {
    src: [
    	// _base.css required for .animated helper class
    	'source/_base.css',
    	'source/attention_seekers/*.css',
    	'source/flippers/*.css'
    ],
    dest: 'animate.css'
  }
}

License

Animate.css is licensed under the MIT license. (http://opensource.org/licenses/MIT)

Contributing

Pull requests are the way to go here. I apologise in advance for the slow action on pull requests and issues. I only have two rules for submitting a pull request: match the naming convention (camelCase, categorised [fades, bounces, etc]) and let us see a demo of submitted animations in a pen. That last one is important.