2

I used jQuery Mobile Left/Right Swipe to Next Page but it not smooth anymore.I have to touch more than 2 times to swipe next/ previous page. (I tested on galaxy samsung tab and another app is run smoothly on this device), My code like this page http://designicu.com/jquery-mobile-swipe/

Is there any way to resolve this ? Thanks,

Nagama Inamdar
  • 2,851
  • 22
  • 39
  • 48
Po Panda
  • 21
  • 3

1 Answers1

5

As jquery mobile is not very smooth in case of page transitions.Its better if we try to turn off all the page transitions in jquery mobile.

$.mobile.defaultPageTransition = "none";

you can also use

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

Also please go through following links.You might get what you are looking for. link1

link2

Community
  • 1
  • 1
Nagama Inamdar
  • 2,851
  • 22
  • 39
  • 48