Mozilla、Chrome、Opera 上的 CSS 3D 支持

发布于 2024-09-28 06:29:42 字数 235 浏览 10 评论 0 原文

大家好
我正在研究 3D 数据渲染,但我无法在 mozilla、opera、chrome 中找到与以下内容等效的内容
任何人都可以帮助我解决这个问题。
例如:

-webkit-transform: rotateX(90deg) translateZ(200px) rotateY(90deg) rotateZ(90deg);

谢谢,
阿米特

Hi ALL

I am working on 3D Data rendering and I am not able to find out the equivalent of following in mozilla, opera, chrome


Can anybody help me out from this problem.


for e.g:

-webkit-transform: rotateX(90deg) translateZ(200px) rotateY(90deg) rotateZ(90deg);

Thanks,


Amit

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

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

发布评论

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

评论(3

秋凉 2024-10-05 06:29:42

Chrome 是 webkit (前缀 -webkit 就像你已经使用它一样)

mozilla 是 此处(首先点击 google) (前缀 -moz

-moz-transform:  rotate(30deg);

opera 是 (google)(前缀 -o)

-o-transform: translateX(50px);
-o-transform: translateY(100px);

编辑: 显示mozilla 中的 3D 效果。也许这有帮助。

Chrome is webkit (prefix -webkit like you arleady use it)

mozilla is here (first hit on google) (prefix -moz)

-moz-transform:  rotate(30deg);

opera is this (google) (prefix -o)

-o-transform: translateX(50px);
-o-transform: translateY(100px);

EDIT: this shows a 3d-effect in mozilla. maybe that helps.

も星光 2024-10-05 06:29:42

3D CSS 变换(translateZ、rotateY、matrix3d 等)仅在 Webkit(Windows 上的 Safari 和 Chromium)中可用。目前没有歌剧。听说福克斯有一天会支持它,所以也许......

3D CSS transforms (translateZ, rotateY, matrix3d etc.) are available only in Webkit (Safari and Chromium on Windows). No Opera at this time. Heard some rumors that Fox will support it someday, so maybe...

我一向站在原地 2024-10-05 06:29:42

这里有一篇关于这个主题的非常好的文章:
http://24ways.org/2010/intro-to-css-3d-transforms

A really good article on this Subject is available here:
http://24ways.org/2010/intro-to-css-3d-transforms

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