As we approach the middle of 2016, I find myself searching for a solution to eliminate blurriness in transform animations. Is there an effective workaround for this issue?
Imagine having a div with text inside that you'd like to animate using the following code:
div:hover {
transform: rotate(90deg);
transition: 1s transform;
}
I've exhaustively searched for solutions online but most of them are outdated. One technique I found helpful is scaling up the font drastically and then using transform scaling to revert it back to its original size. This significantly improves the image quality when the animation is running.
Is there a more refined approach that doesn't feel like a hack?
To clarify my question: How can I achieve clear animations without sacrificing sharpness? Is there a way to override the browser's optimization settings?
Currently, I am facing this issue on Chrome and Webkit browsers.