Flickering when navigating between pages

后端 未结 12 1660
日久生厌
日久生厌 2020-11-28 21:32

My phonegap/jquery mobile application flickers most of the time when I navigate between the pages. Is this normal or is there a solution for this?

12条回答
  •  离开以前
    2020-11-28 22:12

    When using CSS solution

    .ui-page {
        -webkit-backface-visibility: hidden;
    }
    

    you may encounter other issues, so it's not a good idea.

    Actually, jQuery mobile v1.1.0 has issues with transitions. Look at this and this.

提交回复
热议问题