Ext.Img动画在sencha touch中

时间:2013-01-17 11:43:28

标签: sencha-touch sencha-touch-2

如何在运行时应用动画在sencha touch 2.0中创建Ext.Img组件

1 个答案:

答案 0 :(得分:0)

您可以随时使用CSS3动画,只需将任何动画类应用于元素(不仅仅是显示),如下所示:

Ext.getCmp('myImageElementId').addCls('popped');

这是弹出类

.popped {
    -webkit-animation-name: cssAnimation;
    -webkit-animation-duration:3s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
}