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

时间:2013-05-09 10:30:17

标签: javascript jquery jquery-mobile swipe

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

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

1 个答案:

答案 0 :(得分:5)

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

$.mobile.defaultPageTransition = "none";

您也可以使用

 <style>
    /*** for jquerymobile page flicker that was happening ***/
    .ui-page {
        -webkit-backface-visibility: hidden;
    }
</style>

另请注意以下链接。您可能会得到您想要的内容。 link1

link2