Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用包含三个 html 页面的 jquery Mobile 开发一个 phonegap android 应用程序。我想在从一页导航到另一页的过程中包含过渡。对于我使用过的页面之间的导航
window.location = "abc.html";
每个页面都包含一些在页面初始化时加载的动态数据。我试过data-transition="slide"。但是没有任何效果。如何在我的应用程序中包含页面导航的幻灯片转换?
function change_page(page){ $.mobile.changePage( page, { transition: "slide", changeHash: false }); }
调用此函数:change_page('#load_page');或change_page('mypage.html');
change_page('#load_page');
change_page('mypage.html');
$.mobile.changePage('abc.html', { transition : 'slide'});