Go to file
Daniel Eden 292d48904a Correct slideInUp
Fixes #208
2014-04-25 18:20:45 -07:00
source Correct slideInUp 2014-04-25 18:20:45 -07:00
.editorconfig Added .editorconfig 2014-02-24 00:59:40 +05:30
.gitignore Unified formatting across files 2014-02-24 02:09:02 +05:30
Gruntfile.js Refactored Gruntfile.js 2014-02-24 04:25:37 +05:30
README.md add message to deter uncessary issues about one 2014-04-06 14:35:05 -05:00
animate-config.json Adjusted zoomInUp and zoomInDown, re-added up/down zooms 2014-04-25 14:36:18 -07:00
animate.css Correct slideInUp 2014-04-25 18:20:45 -07:00
animate.min.css Correct slideInUp 2014-04-25 18:20:45 -07:00
bower.json Release 3.1.1 2014-04-22 07:39:59 -07:00
package.json Release 3.1.1 2014-04-22 07:39:59 -07: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 also detect when an animation ends:

$('#yourElement').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', doSomething);

Note: jQuery#one is used when you want to execute the event handler at most once. More information here.

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, etc)

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 some of the the “attention seekers”, simply edit the animate-config.json file to select only the animations you want to use.

"attention_seekers": {
  "bounce": true,
  "flash": false,
  "pulse": false,
  "shake": true,
  "swing": true,
  "tada": true,
  "wobble": true
}

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.