I have a swinging div in my page, and it has a text on it. I do the swinging animation with css rotate and jquery. You can see it here http://jsfiddle.net/novellino/Em7ej/
My problem is that the text becomes blurry when the div starts moving. I have tried solutions like adding this:
-webkit-backface-visibility: hidden;
in the css or this:
-webkit-transform-origin: 50% 51%;
but still is not working. Does anyone know if and how can I solve this?
Thanks in advance.