How to solve flicker on iPad when event delegation is used?

筅森魡賤 提交于 2019-12-05 19:57:51
Charlie

Is this the same type of problem you're experiencing: iPad Safari: How to disable the quick blinking effect when a link has been hit

If so, use this CSS rule:

*{
    -webkit-tap-highlight-color:transparent;
}

I tested it with your fiddle on iOS 6.1 in the simulator, and there seems to no longer be any flicker.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!