在悬停时,文字会变得模糊(在Chrome上)。
我知道这是因为缩放文字 ..
所以我的问题是,有没有办法完成同样的任务,文本没有模糊
这是我试过的
span a {
font-size: 24px;
}
span:hover a {
color: #ba4a49;
-webkit-transform: scale(10);
transition: all 2s linear;
}

<span>
<a href="#">Hello this looks blured during transition</a>
</span>
&#13;
进行缩放
span:hover a {
color: #ba4a49;
font-size:250px;
transition: all 2s linear;
}
答案 0 :(得分:3)
为防止模糊,您可以在font-size
而非transform: scale
上进行转换。对于它的价值,我没有在我自己的Chrome浏览器上遇到任何模糊问题。
现场演示:
span a{
font-size: 24px;
}
span:hover a{
color:#ba4a49 ;
font-size: 240px;
transition: all 2s linear;
}
&#13;
<span><a href="#">Hello this looks blured during transition</a></span>
&#13;