变换模糊文本:在 Chrome 中旋转

Blurry text on transform:rotate in Chrome(变换模糊文本:在 Chrome 中旋转)
本文介绍了变换模糊文本:在 Chrome 中旋转的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我正在构建一个带有旋转的包装 div (transform:rotate(10deg)) 的网站.div 内的文本也会旋转.我希望文本是直的,所以我将它旋转回来(transform:rotate(-10deg)).文本又是直的,但这会导致 Chrome(最新版本,mac)中的文本模糊.我试过了:

I'm building a website with a wrapper div that is rotated (transform:rotate(10deg)). The text inside the div also rotates. I want the text straight, so I rotate it back (transform:rotate(-10deg)). The text is straight again, but this causes blurry text in Chrome (latest version, mac). I tried:

-webkit-transform: rotate(.7deg) translate3d( 0, 0, 0);
-webkit-backface-visibility: hidden;
-webkit-font-smoothing: antialiased; (and other)
-webkit-transform-style: preserve-3d;
-webkit-transform: rotateZ(0deg);

这并没有解决问题..

JSFiddle:http://jsfiddle.net/D69d4/10/

奇怪的是:它在 jsfiddle 中完美运行.但在实际网站上却不行.当我在我的样式中添加 -webkit-backface-visibility: hidden; 时,Safari 中的模糊文本再次变得清晰,但在 Chrome 中没有区别.(我几乎认为它在 Chrome 中变得更糟)(FF 工作正常)

The weird thing is: it works perfectly in the jsfiddle.. But not on the actual website. When I add -webkit-backface-visibility: hidden; inside my style, the blurry text in Safari turns out sharp again, but in Chrome there is no difference. (I almost think it is making it worse in Chrome) (FF works fine)

我希望有人能帮我解决这个问题,或者给我一个解释是怎么回事.

I hope someone can help me with this, or give me a explanation what is going wrong.

推荐答案

它发生在 Chrome 和 Safari 等 Webkit 浏览器中.尝试添加:

It happens in Webkit browsers such as Chrome and Safari. Try adding:

-webkit-transform-origin: 50%  51%;

你会没事的.

这篇关于变换模糊文本:在 Chrome 中旋转的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

quot;Origin null is not allowed by Access-Control-Allow-Originquot; in Chrome. Why?(“Access-Control-Allow-Origin 不允许 Origin null在铬.为什么?)
Empty responseText from XMLHttpRequest(来自 XMLHttpRequest 的空 responseText)
XMLHttpRequest status 0 (responseText is empty)(XMLHttpRequest 状态 0(responseText 为空))
Why Chrome cancel CORS OPTION request(为什么 Chrome 会取消 CORS OPTION 请求)
Is there a way to not send cookies when making an XMLHttpRequest on the same origin?(在同一来源上发出 XMLHttpRequest 时,有没有办法不发送 cookie?)
Origin header null for XHR request made from lt;iframegt; with sandbox attribute(从 lt;iframegt; 发出的 XHR 请求的 Origin 标头为空带沙盒属性)