views:

1618

answers:

1

Can any one please help to how to create animated text using ExtJs

+1  A: 

Some examples:

Ext.get("my-element-id").highlight();

Ext.get("my-element-id").fadeIn();

Easy. Check out the Ext.Fx class. It has many animation methods.

http://extjs.com/deploy/ext/docs/output/Ext.Fx.html

Chris Tek