jQuery Mobile blinking at page transitions on iPad

后端 未结 12 584
野的像风
野的像风 2020-12-08 05:42

I have a web app built with jQuery Mobile that works fine when using it in Safari on an iPad. However, when you add it to the home screen to use it as a standalone app (with

12条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-08 06:27

    I was nervous about commenting out focus, but a google search found the following CSS that seems to work:

    .ui-page * {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    transform: rotateY(0deg);
    }
    

    Original link: https://github.com/jquery/jquery-mobile/issues/2856

    I was only having a problem with the slide transition (even reverse slide worked fine. JQ 1.7.1 JQM 1.0.1 PhoneGap 1.5.0

提交回复
热议问题