How to create animated text using ExtJs

Can anyone help creating animated text using ExtJs

+3
source share
1 answer

Some examples:

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

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

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

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

+5
source

Source: https://habr.com/ru/post/1714293/


All Articles