I\'ve had this issue for a while and it seems to be a Chrome redraw bug that hasn\'t been fixed. So I\'m looking for any stop-gap fixes.
The main issue is that when a
My problem was I have animated 3d transform hover div in document
.anim-y360:hover {
-webkit-transform: rotateY(360deg);
...
}
Every time I run the animation the fixed image was disappearing.
The solution was simple:
.anim-y360 {
z-index: XX;
...
}
Where XX is higher than the fixed position image's z-index.