jQuery Mobile左/右滑动到下一页不流畅

Po *_*nda 2 javascript jquery swipe jquery-mobile

我使用jQuery Mobile左/右滑动到下一页但它不再平滑.我必须触摸2次以上才能刷下一页/上一页.(我在galaxy samsung选项卡上测试过,另一个应用程序在此设备上运行顺畅),我的代码如下页面 http://designicu.com/jquery-mobile-swipe/

有什么方法可以解决这个问题吗?谢谢,

NJI*_*dar 5

由于jquery mobile在页面转换的情况下不是很流畅.如果我们尝试关闭jquery mobile中的所有页面转换,那就更好了.

$.mobile.defaultPageTransition = "none";
Run Code Online (Sandbox Code Playgroud)

你也可以用

 <style>
    /*** for jquerymobile page flicker that was happening ***/
    .ui-page {
        -webkit-backface-visibility: hidden;
    }
</style>
Run Code Online (Sandbox Code Playgroud)

另外请通过以下链接.您可能会得到您想要的. 链接1

LINK2