Phonegap - cordova is laggy and slow on android and iOS devices

前端 未结 5 1371
面向向阳花
面向向阳花 2021-02-09 01:26

I just now started with my first PhoneGap project using zend studio. But, after i build and deploy it, the application is quite slow. Both on android and iOS. The scrolling is l

5条回答
  •  既然无缘
    2021-02-09 02:08

    as mentioned, use FastClick to remove the 300ms delay for clicks. you can also use this code to speed up the page transition: $(document).bind("mobileinit", function () { $.mobile.defaultPageTransition = 'none'; });

提交回复
热议问题