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();
 
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki