Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/wordpress/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Animation 导航窗口的自定义动画_Animation_Titanium Mobile_Titanium Alloy - Fatal编程技术网

Animation 导航窗口的自定义动画

Animation 导航窗口的自定义动画,animation,titanium-mobile,titanium-alloy,Animation,Titanium Mobile,Titanium Alloy,这是我的密码。我想修改它,使窗口向上滑动。这种转换似乎不起作用,并且一直从左向右滑动 知道为什么吗,干杯。很简单,Ti.UI.iOS.NavigationWindow不允许转换 只有在调用'Window.open()'时,才能定义一个转换道具。我是否可以更改代码以实现这一点?我正在使用导航窗口创建两个导航窗口,并将其用作一个窗口。但这毫无意义。 //load up profile controller. function go_to_profile() { var controller

这是我的密码。我想修改它,使窗口向上滑动。这种转换似乎不起作用,并且一直从左向右滑动


知道为什么吗,干杯。

很简单,
Ti.UI.iOS.NavigationWindow
不允许转换


只有在调用'Window.open()'时,才能定义一个转换道具。

我是否可以更改代码以实现这一点?我正在使用导航窗口创建两个
导航窗口
,并将其用作一个窗口。但这毫无意义。
//load up profile controller.
function go_to_profile() {
    var controller = Alloy.createController('Profile', {
        title : 'Profile',
        name : '_profile',
        isFlyout : true
    });
    var newWindow = controller.getView();
    Alloy.Globals.navGroup.openWindow(newWindow, {
        animated : true,
        transition:Titanium.UI.iPhone.AnimationStyle.CURL_UP
    });

}