Webkit重画问题:变换比例+位置改变

发布于 2024-11-28 00:15:56 字数 758 浏览 0 评论 0原文

当我对变换和左/上属性进行动画处理时,我发现了一些奇怪的(?)行为。我使用 jQuery + 一些助手来处理转换(它只是添加供应商前缀并进行一些修复,这些修复不应成为我正在讨论的问题的原因)。所以,jquery 工作得很好并且工作得很好。当您分别为变换比例和左/上设置动画时 - 它也可以工作,但当您一起执行时则不行。

这是我的演示示例: http://noname.vrn.ru/transform/test.html

正如您在动画过程中看到的,两个属性都会发生变化,但位置属性不会影响屏幕 - http://vns.ru/screenshots/transform-20110806-140111.png。接下来,当动画完成时,您可以更改窗口大小,并且块将保持在动画期间应保持的新位置。因此,这意味着调整大小后会发生“重绘”过程,并且元素会更改其位置。但是重绘过程也会在每次动画步骤时发生,那么,为什么“left”属性的新值不适用?

我第一次在 Chrome 12 中看到这个问题。我也在 Safari 5.0.x 中进行了测试,那里没有问题,然后他们发布了 5.1,在新版本中我们可以看到与 Chrome 中相同的问题。在 FF4-5 中它运行良好。

谁能向我解释一下 Webkit 浏览器的这种行为吗?

I've found some strange(?) behavior when i animate transform and left/top properties. I use jQuery + some helper to work with transform (it just adds vendor prefixes and makes some fixes that should not be reason for the problem i'm talking about). So, jquery works great and do it work well. When you animate transform scale and left/top separately - it's also work but not when you do it TOGETHER.

Here is my demo example: http://noname.vrn.ru/transform/test.html

As you can see during an animation both properties changes but position properties doesn't effect on the screen - http://vns.ru/screenshots/transform-20110806-140111.png. Next, when animation finished you can change window size and block will hold new position that it should be held during an animation. So, it means that after resize happens 'repaint' process and element change it position. But repaint process also happens each time of animation step, so, why new value of 'left' property doesn't apply?

First time i've seen this problem in Chrome 12. I also have tested in Safari 5.0.x and there wasn't problem there, then they released 5.1 and in new version we can see same problem as in Chrome. In FF4-5 it works fine.

Could anyone explain to me this behavior of Webkit browsers?

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

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

发布评论

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

评论(1

傻比既视感 2024-12-05 00:15:56

需要触发该层的硬件加速:

#block {
    -webkit-transform-style: preserve-3d;
}

You need to trigger hardware acceleration on the layer:

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