Skip to content
Merged

V1.1 #15

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<a name="1.1.4-0"></a>
### 1.1.4-0 (2014-05-27)


<a name="1.1.3-1"></a>
### 1.1.3-1 (2014-05-21)

Expand Down
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ A jQuery plugin to dynamically apply [Dan Eden's animate.css][animate.css] anima

## Getting Started

### Bower
Install with [Bower][bower]
`bower install animateCSS`

[bower]: http://bower.io/

### Download

Download the [production version][min] or the [development version][max].

[min]: https://raw.github.com/craigmdennis/animateCSS/master/dist/jquery.animatecss.min.js
Expand All @@ -28,7 +36,7 @@ $(document).ready( function(){
```js
{
infinite: false, // True or False
animationClass: "animate", // Can be any class
animationClass: "animated", // Can be any class
delay: 0 // Can be any value (in ms)
callback: // Any function
}
Expand Down Expand Up @@ -93,7 +101,7 @@ If you want to hide an element when the page loads and then apply an effect, it
```js
$(window).load( function(){
$('#your-id').animateCSS('fadeIn', function(){
alert('Boom! Animation Complete');
console.log('Boom! Animation Complete');
});
});
```
Expand Down
2 changes: 1 addition & 1 deletion animateCSS.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "animateCSS",
"title": "Animate CSS jQuery Plugin",
"description": "A jQuery plugin to dynamically apply animate.css animations with callbacks",
"version": "1.1.3-1",
"version": "1.1.4",
"homepage": "https://github.com/craigmdennis/animateCSS.git",
"author": {
"name": "Craig Dennis",
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "animateCSS",
"description": "A jQuery plugin to dynamically apply animate.css animations with callbacks",
"main": "dist/jquery.animatecss.js",
"version": "1.1.3-1",
"version": "1.1.4",
"dependencies": {
"animate.css": "~3.1.1"
},
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.animatecss.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*! animateCSS - v1.1.0 - 2014-05-21
* https://github.com/craigmdennis/animatecss
/*! animateCSS - v1.1.3-1 - 2014-05-27
* https://github.com/craigmdennis/animateCSS
* Copyright (c) 2014 Craig Dennis; Licensed MIT */

(function() {
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.animatecss.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "animateCSS",
"version": "1.1.3-1",
"version": "1.1.4",
"description": "Animate CSS jQuery Plugin",
"keywords": [
"jquery-plugin",
Expand Down