Sencha Touch animation options

▼魔方 西西 提交于 2019-12-22 09:27:02

问题


Where can I find a list of the available animation types for Ext.Panel.show()? I've searched the documentation and googled "sencha touch animation options", but can't find anything.


回答1:


You can see all the animations here

http://dev.sencha.com/deploy/touch/examples/production/kitchensink/

And here's the API

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




回答2:


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.




回答3:


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');


来源:https://stackoverflow.com/questions/9670028/sencha-touch-animation-options

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