how to speed up changepage in jquery mobile for phonegap app

后端 未结 2 971
执笔经年
执笔经年 2021-02-11 08:29

I am using jquerymobile 1.3.1 for my phonegap android app. The change page methord is slow (more than 1 sec) in android without page transition (defaultPageTransition=none).

2条回答
  •  故里飘歌
    2021-02-11 09:17

    I recommend

    Energize.js - https://github.com/davidcalhoun/energize.js removes tap delay on all clicks/taps

    Just change in Jquery Mobiles's CSS

    .in, .out {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-animation-duration: 350ms !important;
    }
    

提交回复
热议问题