====== Animation ====== ===== animate( properties, duration, callback, easing, step ) ===== Animates the current elements. Karma(document.body).animate({ scrollTop: 2000, fontSize: '20px' }, 2000, function(){ alert('finished animating'); }); ===== stop( ) ===== Stops the current animation and clears the animation queue. Karma(document.body).stop();
Karma(document.body).animate({ scrollTop: 2000, fontSize: '20px' }, 2000, function(){ alert('finished animating'); });
Karma(document.body).stop();