0

我正在使用包含三个 html 页面的 jquery Mobile 开发一个 phonegap android 应用程序。我想在从一页导航到另一页的过程中包含过渡。对于我使用过的页面之间的导航

window.location = "abc.html";

每个页面都包含一些在页面初始化时加载的动态数据。我试过data-transition="slide"。但是没有任何效果。如何在我的应用程序中包含页面导航的幻灯片转换?

4

2 回答 2

0
function change_page(page){

    $.mobile.changePage( page, { transition: "slide", changeHash: false });

}

调用此函数:change_page('#load_page');change_page('mypage.html');

于 2013-10-01T13:07:17.910 回答
0
 $.mobile.changePage('abc.html', { transition : 'slide'});
于 2013-10-01T12:53:52.570 回答