如何在qooxdoo mobile中禁用页面转换的动画探测?当我调用show()
方法来显示页面时,默认动画是" slide"但是根本没有动画。怎么办?
答案 0 :(得分:0)
更新26.07.2014
使用qx> 4.0您可以通过使用null
方法传递动画选项show
来设置它:
page.show({"animation": null});
使用qx< = 4.0,您可以为布局上具有showAnimation
属性的页面禁用动画。
page.getLayoutParent().getLayout().setShowAnimation(false);
page.show();
page.getLayoutParent().getLayout().setShowAnimation(true);
这是qx 4.0的运行示例: http://tinyurl.com/lkrmv3m