Sencha Touch animation options

删除回忆录丶 提交于 2019-12-05 18:03:40

Here is the documentation for the available animation types:

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

Some of them don't work on Android.

In ST 2

  • cube *
  • fade
  • flip *
  • pop
  • slide
  • wipe *

*does not work in android

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

Do not forget the

Ext.requires('Ext.Anim');
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!