Skip to content

Commit d7754a0

Browse files
committed
Merge branch 'master' of github.com:daneden/animate.css
2 parents f1ce5d8 + f71e491 commit d7754a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+498
-355
lines changed

Gruntfile.js

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

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
* `pulse`
2222
* `rubberBand`
2323
* `shake`
24+
* `headShake`
2425
* `swing`
2526
* `tada`
2627
* `wobble`
@@ -142,21 +143,22 @@ You can change the duration of your animations, add a delay or change the number
142143
*Note: be sure to replace "vendor" in the CSS with the applicable vendor prefixes (webkit, moz, etc)*
143144

144145
## Custom Builds
145-
Animate.css is powered by [Grunt](http://gruntjs.com), and you can create custom builds pretty easily. First of all, you’ll need Grunt and all other dependencies:
146+
Animate.css is powered by [gulp.js](http://gulpjs.com/), and you can create custom builds pretty easily. First of all, you’ll need Gulp and all other dependencies:
146147

147148
```sh
148149
$ cd path/to/animate.css/
149150
$ sudo npm install
150151
```
151152

152-
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.
153+
Next, run `gulp` to 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.
153154

154155
```javascript
155156
"attention_seekers": {
156157
"bounce": true,
157158
"flash": false,
158159
"pulse": false,
159160
"shake": true,
161+
"headShake": true,
160162
"swing": true,
161163
"tada": true,
162164
"wobble": true,

animate-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"pulse": true,
77
"rubberBand": true,
88
"shake": true,
9+
"headShake": true,
910
"swing": true,
1011
"tada": true,
1112
"wobble": true,

0 commit comments

Comments
 (0)