I use wow to animates few element on my page with success.
I wish to use wow to trigger other js functions when item are visible.
I try to use callback option but it doesn't seams to work
var wow = new WOW(
{
callback: function(box) {
// the callback is fired every time an animation is started
// the argument that is passed in is the DOM node being animated
console.log("!! WOW !!");
}
}
);
wow.init();
the animations are triggered, but nothing is logged
I use wow to animates few element on my page with success.
I wish to use wow to trigger other js functions when item are visible. I try to use callback option but it doesn't seams to work
the animations are triggered, but nothing is logged