We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9358cdf commit 93b11ebCopy full SHA for 93b11eb
1 file changed
README.md
@@ -66,7 +66,11 @@ var wow = new WOW(
66
animateClass: 'animated', // animation css class (default is animated)
67
offset: 0, // distance to the element when triggering the animation (default is 0)
68
mobile: true, // trigger animations on mobile devices (default is true)
69
- live: true // act on asynchronously loaded content (default is true)
+ live: true, // act on asynchronously loaded content (default is true)
70
+ callback: function(box) {
71
+ // the callback is fired every time an animation is started
72
+ // the argument that is passed in is the DOM node being animated
73
+ }
74
}
75
);
76
wow.init();
0 commit comments