Titanium - 切换屏幕时如何从左转换动画中滑动?

时间:2017-04-13 09:28:03

标签: ios animation appcelerator-titanium

我在Appcelerator构建的移动应用中切换屏幕时收到了从左侧动画实现幻灯片的请求。

我试过这种方法提到here,但它不起作用。我意识到当我调用.open()方法时,无论我把它放在哪个params上它都会先显示视图,然后只执行动画,从而使动画变得毫无意义..

屏幕目前由以下代码打开:

var slideIn = Ti.UI.createAnimation({
            left: 0,
            duration: 500
        });

var view = Alloy.createController("newscreen").getView();

view.open(slideIn);


$.index.close();

感谢任何帮助。感谢。

0 个答案:

没有答案