的animateActiveItem功能動畫我有我的應用程序類下面的代碼:爲什麼不是在煎茶觸摸
switchMainView: function (newView, config) {
if (this.currentView != false) {
Ext.Viewport.remove(this.currentView);
}
this.currentView = Ext.create(newView, config);
Ext.Viewport.animateActiveItem(this.currentView, { type: 'slide', direction: 'right' })
},
可以從任何控制器來調用。但是,它沒有顯示動畫。任何想法它有什麼不對?
是的,我同意這一點,用卡片佈局,你可以執行動畫。 –
我想補充一點,因爲這部分是由於我缺乏理解。如果有東西要進行動畫處理,視口只會動畫。如果只有一張卡,即我刪除了第一張卡,然後添加一張新卡,則它將從0卡過渡到1卡時不起作用。 – jaffa