From a7d5f01b06a8ca71d5dabd0218ddf6a29ccdd85b Mon Sep 17 00:00:00 2001 From: Dan Eden Date: Wed, 14 Dec 2011 10:14:22 +0000 Subject: [PATCH] New readme --- README | 15 --------------- README.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 15 deletions(-) delete mode 100644 README create mode 100644 README.md diff --git a/README b/README deleted file mode 100644 index 153f385..0000000 --- a/README +++ /dev/null @@ -1,15 +0,0 @@ -A bunch of hip and trendy CSS animations. - -Learn more at http://daneden.me/animate - - - -LICENSED UNDER THE MIT LICENSE (MIT) - -Copyright (c) 2011 Dan Eden - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..d326820 --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +#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 ``, 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! + +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)* + +##Learn more +You can learn more about animate.css over at http://daneden.me/animate +You can also get in touch via email (dan.eden@me.com) or twitter (@_dte) if you need any help or have any issues. \ No newline at end of file