Answer the question
In order to leave comments, you need to log in
Image and text blur after transform: scale(1.5)?
img{
transform: scale(1.5);
}
img:hover .my_div{
font-smoothing: antialiased !important;
-webkit-font-smoothing: antialiased !important;
}
img{
filter: none;
-webkit-filter: blur(0px);
-moz-filter: blur(0px);
-ms-filter: blur(0px);
filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='0');
-webkit-backface-visibility: hidden;
-ms-transform: translateZ(0); /* IE 9 */
-webkit-transform: translateZ(0) scale(1.0, 1.0) translate3d(0,0,0); /* Chrome, Safari, Opera */
transform: translateZ(0) translate3d(0,0,0);
-webkit-font-smoothing: subpixel-antialiased;
}
Answer the question
In order to leave comments, you need to log in
As already mentioned, adjust the transformation so that the new size is integer. And font-smoothing should seem to remove text blur as a result. But the blur during the transformation will not be affected in any way. This implementation of the functionality of a particular browser does not depend on the layout designer.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question