我正在开发一种 Titan和roid。 在此,我需要打开一个模式窗口,我有以下代码。
var window = Ti.UI.createWindow({
title: "This is modal window"
});
// Add some elements to window
window.open({modal: true});
The problem here is that the window opens in a flash without any animation. I would like to have the modal window crawl from bottom to top while appearing on screen. How can I carry out this animation? I have also trued giving animation:true in window.open(), but didn t succeed.