我正在尝试通过animate()
.
我在 hbox 布局中有三个面板,每个面板都使用 flex 来动态消耗空间。
我可以通过动画更改面板的高度,但我无法更改 flex。
xtype: 'button',
id:'btn',
text: '>>',
handler : function() {
var tptp = Ext.getCmp('Third_panel');
//tptp.hide(500000000);
tptp.animate({
dynamic :true,
duration:10000,
delay:25,
easing:'elasticIn',
type:'popOut',
//from:
//{
//flex:2
//},
to: {
height: (tptp.getHeight() == 500) ? 0 : 500
//flex:1
}
});