简体   繁体   中英

CSS animation crashes Phonegap App on iPad only

My Phonegap App I am using High resolution images and zooming functionality using iScroll. But it looks blur so i got one solution add css translate. It solves my image blur issue but in iPad2 my App crashes due to this css transform.

transform: translate3d(0,0,0);
-webkit-transform: translate3d(0,0,0);

@Krishna,
Those specific CSS strings transform: translate3d(0,0,0); are used to turn on hardware acceleration . At least, that is what I read again and again. If you know that they are making you App crash, take them out. I don't see the issue.

The answer to your blurring, try something else - like increasing your pixel density .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM