iPad Flicker on auto scroll using JQuery and Scrollto plugin

前端 未结 11 1623
情话喂你
情话喂你 2020-12-12 16:52

I am having a bit of a weird problem with iOS platform for a page i am developing. This is the page in question. When clicking any of the case study images, the page will

11条回答
  •  春和景丽
    2020-12-12 17:22

    I'm not sure if this applies to jquery animations. But the following seems to affect CSS animations.

    http://css-infos.net/property/-webkit-backface-visibility

    Syntax

    -webkit-backface-visibility: visibility;
    

    Parameters

    visibility Determines whether or not the back face of a transformed element is visible. The default value is visible.

    edit

    Try applying it to every element and see what happens.

    *{
     -webkit-backface-visibility: visible;
    }
    

    and try

    *{
    -webkit-backface-visibility: hidden;
    }
    

    It's just a guess really...

提交回复
热议问题