Rotate In Hover Doesn't Work In Chrome
I am new here, so sorry if I am being misunderstood. I made a flip animation when user hovers a div. Works perfectly in Firefox, but not in chrome. I lost last hour trying to find
Solution 1:
Use -webkit-transform: rotateY(xdeg); Unfortunately not everything from transform works without vendor prefixes. Check http://caniuse.com/#feat=transforms2d for browser support
Solution 2:
put this to all your rotations in css, maybe it'll help you...
-webkit-backface-visibility:hidden;
Post a Comment for "Rotate In Hover Doesn't Work In Chrome"