nnattawat / flip

A lightweight jQuery plugin to make 3D card flipping animation
Other
626 stars 312 forks source link

Chrome Version 56.0.2924.87 - backface-visibility is hidden but is still displayed #105

Open KyleABrown opened 7 years ago

KyleABrown commented 7 years ago

image

KyleABrown commented 7 years ago

I even tried to alter flip.js to include -webkit-backface-visibility: hidden ~ but that did not seem to help either. Maybe I am missing something?

nmsdvid commented 7 years ago

I had this problem, In my case I had to remove the position:relative; CSS property from the falsely visible element. I hope this helps.

KyleABrown commented 7 years ago

That fixes it!

dgparker commented 7 years ago

Changing to position: static on my falsey visible element fixed this issue for me as well. Thanks mate