Font looks blurry after translate in Chrome

前端 未结 10 1237
逝去的感伤
逝去的感伤 2020-12-30 20:05

EDIT 2016-07-04(Since this question is getting popular): This is a bug in Chrome. Developers are actively working on a fix.

EDIT 2017-05-14<

10条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-30 20:58

    Use a normalization of the transform after your animation:

    Transform X/Y normalization

    Or We scale the texture with zoom double, then scale down again. In some cases this cannot be applied due to other complex transformations or translations, and is not perfect.

    ...{
    zoom:2;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    }
    

提交回复
热议问题