What are common sources of PhoneGap with jQuery Mobile performance issues?

前端 未结 8 1770
既然无缘
既然无缘 2021-01-30 18:14

I have an application written using PhoneGap 1.0 and jQuery Mobile 1.0b2 running on iPhone and iPad.

Ever since I started using the framework, I have been plagued by per

相关标签:
8条回答
  • 2021-01-30 19:15

    Try updating your software. PhoneGap 1.2 + jQueryMobile 1.0 (released today) are showing large performance gains for me so far.

    0 讨论(0)
  • 2021-01-30 19:15

    To improve the transition speed simply set the transition duration as :-

    .in, .out {
    -webkit-animation-duration: 250ms !important;
    }
    

    In the above case the transition duration is 250 ms.

    0 讨论(0)
提交回复
热议问题