3D变换CSS3导致文本和图像模糊

发布于 2025-01-02 06:41:07 字数 24 浏览 0 评论 0原文

应用 3D 变换时文本和图像模糊?

Text and images are blurred when 3d transform is applied?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

网名女生简单气质 2025-01-09 06:41:07

这是因为您正在将它们缩放到沿 z 轴更靠近用户。通过使用变换将整个立方体向后移动 z 立方体宽度的一半,确保任何可读内容都保持在 z=0 处。

根据您的情况,修改您的#cube 规则:

#wrapper.red #cube {
    -webkit-transform: translateZ(-210px) rotateY(90deg);
}

像这样。为了补偿,您需要使立方体更宽,并使文本大于尺寸 11 才能正常工作。

That's because you are zooming them to be closer to the user along the z-axis. Make sure anything readable stays at z=0, by moving your whole cube back through z by half the width of the cube using a transform.

In your case, modify your #cube rules:

#wrapper.red #cube {
    -webkit-transform: translateZ(-210px) rotateY(90deg);
}

like that. To compensate, you'll need to make the cube wider, and make the text bigger than size 11 for it to work nicely.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文