I am making single page app with Backbone, JQuery mobile, when I use JQuery changePage to switch views(pages), white screen always showes before transition(testing on Android), have tried out solutions found on StackOverflow, but still problem existing. So is there better solution to solve it?
Asked
Active
Viewed 1,006 times
0
-
Try the -webkit-backface-visibility fix http://stackoverflow.com/questions/3461441/prevent-flicker-on-webkit-transition-of-webkit-transform – Rob Schmuecker Jul 28 '14 at 10:31
-
have tried this: .ui-page { -webkit-backface-visibility: hidden; }, dose not make difference – Xcihnegn Jul 28 '14 at 10:34
1 Answers
0
Problem solved:
Solution:
Change:
<meta name="viewport" content="width=device-width, initial-scale=1">
To:
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
Then white screen disappear.

Xcihnegn
- 11,579
- 10
- 33
- 33