Sencha Touch animation options

Where can I find a list of available animation types for Ext.Panel.show ()? I searched the documentation and added โ€œsencha touch animation optionsโ€ to Google, but didn't find anything.

+4
source share
3 answers

Here is the documentation for the available animation types:

http://docs.sencha.com/touch/2-0/#!/api/Ext.anims

Some of them do not work on Android.

+1
source

In ST 2

  • cube *
  • fade away
  • flip *
  • pop
  • slide
  • erase *

* does not work in android

Ext.Anim.run(this, 'fade', { out: false, autoClear: true }); 

Do not forget

 Ext.requires('Ext.Anim'); 
+1
source

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


All Articles