Skip to content

Commit a7d5f01

Browse files
committed
New readme
1 parent dbce97a commit a7d5f01

File tree

2 files changed

+28
-15
lines changed

2 files changed

+28
-15
lines changed

README

Lines changed: 0 additions & 15 deletions
This file was deleted.

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#Animate.css
2+
*Just-add-water CSS animation*
3+
4+
`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.
5+
6+
##Usage
7+
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!
8+
9+
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:
10+
11+
```
12+
$('#yourElement').addClass('animated bounceOutLeft');
13+
```
14+
15+
You can change the duration of your animations, add a delay or change the number of times that it plays!
16+
17+
```#yourElement {
18+
-vendor-animation-duration: 3s;
19+
-vendor-animation-delay: 2s;
20+
-vendor-animation-iteration-count: infinite;
21+
}
22+
```
23+
24+
*Note: be sure to replace "vendor" in the CSS with the applicable vendor prefixes (webkit, moz, ms, o)*
25+
26+
##Learn more
27+
You can learn more about animate.css over at http://daneden.me/animate
28+
You can also get in touch via email (dan.eden@me.com) or twitter (@_dte) if you need any help or have any issues.

0 commit comments

Comments
 (0)