Chrome animation makes text blurry

后端 未结 5 931
旧巷少年郎
旧巷少年郎 2021-01-02 00:32

Everything works good on Firefox but chrome shows the animated text blurry. I did everything like -webkit-font-smoothing: subpixel-antialiased; , -webkit-

5条回答
  •  独厮守ぢ
    2021-01-02 00:51

    This misrendering often appears. You can try transform: translate3d(0, 0, 0) or transform: translateZ(0) und the element with the animation, but it doesnt works always.
    -webkit-font-smoothing: antialised is another option but that never worked for me.

提交回复
热议问题