having a lot of trouble finding the equivalent of this code in jquery
var reveal = new Fx.Styles(div, {
duration: 200,
transition: Fx.Transitions.Quad.easeIn,
wait: true,
fps: 24
});
reveal.addEvent('onStart', function(){
tt_has(true);
});
I think it would become:
There is no ‘start’ event in jquery animations (they start automatically), so we call
tt_has(true)right after the call to.animate(),More info here.
Hope this helps. Cheers