CSS 动画比例适用于 Firefox,不适用于 Chrome

发布于 2024-12-10 13:06:02 字数 677 浏览 0 评论 0原文

已解决: Chrome/Webkit 中的 CSS 动画/缩放问题

我问了这个之前问过,但不确定是否清楚。从那时起我已经进行了大量的故障排除,但无济于事。所以我回来了,希望能得到一些帮助。

  1. 使用 JS,在文档准备好时,我删除隐藏图像的类并添加用于设置运动对象的 logoAnim。

    使用
  2. 该对象应同时带有scaleY(2) 效果- 渗漏/滴落效果。

您可以通过 Firefox/Moz 在 JSFiddle 链接中看到正确的效果,但它在 Chrome/Webkit 中不起作用。查看 FF 中的 Firebug 代码,“-moz-animation:2s escape 2s normal none 1 ooze”出现在“.logoAnim”的 CSS 中 - 它没有出现在 Chrome 的 webkit 版本中。

我错过了什么吗? css 的结构/顺序在 webkit 中重要吗?

http://jsfiddle.net/AfDwu/5/

RESOLVED: CSS Animation/Scale issue in Chrome/Webkit

I asked this question previously, but I'm not sure if it was clear. I've done a ton of troubleshooting since to no avail. So I'm back w/ a play-by-play hoping for some help.

  1. Using JS, on doc ready, I remove the class that hides the image and add logoAnim which sets the object in motion.

  2. The object should drop in with a simultaneous scaleY(2) effect- an oozing/drip effect.

You can see the correct effect in the JSFiddle link via Firefox/Moz, however it doesn't work in Chrome/Webkit. Looking at the Firebug code in FF, the '-moz-animation:2s ease 2s normal none 1 ooze' appears in the CSS of the '.logoAnim'- it doesn't appear in the webkit version in Chrome.

Am I missing something? Is structure/order of the css important in webkit?

http://jsfiddle.net/AfDwu/5/

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

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

发布评论

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

评论(1

烟沫凡尘 2024-12-17 13:06:02

DuoPixel 已解决此问题: Chrome/Webkit 中的 CSS 动画/缩放问题< /a>

您没有指定 -webkit-animation 的属性,仅指定名称。

替换: -webkit-animation-name: ooze

为: -webkit-animation: ooze 2s 2s escape-in​​-out;

它将起作用。

This problem has been resolved by DuoPixel: CSS Animation/Scale issue in Chrome/Webkit

You are not specifying the properties of the -webkit-animation, only the name.

Replace: -webkit-animation-name: ooze

With: -webkit-animation: ooze 2s 2s ease-in-out;

And it will work.

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