Chrome animation makes text blurry

后端 未结 5 936
旧巷少年郎
旧巷少年郎 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:54

    The best solution for text blurring when adding an animation is add "z-index: 1;" on the style where animation is placed.

    .in {
      -webkit-animation: comein 0.5s 1;
      -moz-animation: comein 0.5s 1;
      animation: comein 0.5s 1;
      animation-fill-mode: both;
      z-index: 1;
    }
    

提交回复
热议问题