Chrome still does flicker on transition

ぃ、小莉子 提交于 2020-01-14 09:09:17

问题


I'm facing this popular issue with Chrome, where I apply a filter:blur(8px) to an image hover and it flickers when the hover effect is on/off, the image flickers.

Before posting I did search and try options like adding:

-webkit-backface-visibility: hidden;

or:

-webkit-transform: translate3d(0, 0, 0);
-webkit-transform-style: preserve-3d;
-webkit-transform: translateZ(0);
-webkit-perspective: 1000;

But none of those worked for me.

It's important to notice that it happens on first load, or when google chrome dev tool is open with the option "disable cache" under the network tab.

Screencast here

jsFiddle

Any help is appreciated!

来源:https://stackoverflow.com/questions/50269779/chrome-still-does-flicker-on-transition

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