Sencha Documentation

Animation Manager which keeps track of all current animations and manages them on a frame by frame basis.

Config Options

 
forceJS : Boolean
Turn off to not use CSS3 transitions when they are available
 
interval : Number
Default interval in miliseconds to calculate each frame. Defaults to 16ms (~60fps)

Methods

 
addAnim( Ext.fx.Anim anim ) : Void
Add an Anim to the manager. This is done automatically when an Anim instance is created.

Parameters

  • anim : Ext.fx.Anim

Returns

  • Void
 
collectTargetData( Ext.fx.Anim anim, Number timestamp ) : Void
Collect target attributes for the given Anim object at the given timestamp

Parameters

  • anim : Ext.fx.Anim
    The Anim instance
  • timestamp : Number
    Time after the anim's start time

Returns

  • Void
 
removeAnim( Ext.fx.Anim anim ) : Void
Remove an Anim from the manager. This is done automatically when an Anim ends.

Parameters

  • anim : Ext.fx.Anim

Returns

  • Void