sliding left to right transition in jQuery Mobile

时间秒杀一切 提交于 2019-12-21 05:22:07

问题


I'm adding pages run time when swipeleft is happened. But when swiperight happened I can't return the previous page that I'm created with sliding from left to right.

I have added the data-direction="reverse" to the pages but it didn't create left-to-right effect.

Is there any way to do this?


回答1:


A maybe easier way using JQM would be:

<a href="page.html" data-transition="slide" data-direction="reverse">Link Text</a> 

or also, within js as:

$.mobile.changePage("page.html", { transition: 'slide', reverse: true });



回答2:


function ChangePage(pageId,iPageIndex) {
    var forward = iCurrCardIndex < iPageIndex;
    iCurrCardIndex = iPageIndex;

    $.mobile.changePage("#" + pageId, "slide", !forward, true);
}



回答3:


data-direction="reverse" does not belong on the page, you add it to the link:

<a href="page.html" data-direction="reverse">Link Text</a> 

will send you to page.html with a reverse transition.




回答4:


By using data-rel="back" jQuery Mobile will mimic the back button, see "Back linking" here: http://jquerymobile.com/demos/1.0b1/#/demos/1.0b1/docs/pages/docs-pages.html




回答5:


<a href="nextPage.html" data-transition="reverse slide">Next page</a>


来源:https://stackoverflow.com/questions/7205609/sliding-left-to-right-transition-in-jquery-mobile

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!