为什么 jQuery .animate({opacity:0}) 也会改变 z-index

发布于 2024-11-25 13:55:29 字数 204 浏览 0 评论 0原文

基本上标题说明了一切 - 为什么 jQuery .animate({opacity:0}) 也改变了 z-index?

你知道如何解决吗?

编辑:
链接到示例: http://jsfiddle.net/4vUc7/

谢谢。

Basically the title says everything - why jQuery .animate({opacity:0}) changes the z-index too?

Do you know how to solve it?

EDIT:
link to example: http://jsfiddle.net/4vUc7/

Thanks.

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

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

发布评论

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

评论(2

近箐 2024-12-02 13:55:29

您的 z-index 中缺少分号

这是更新后的 fiddle

You were missing a semicolon in your z-index

Here is the updated fiddle

半窗疏影 2024-12-02 13:55:29

正如jen链接的问题中提到的,这不是 jQuery bug,而是浏览器问题。如果您在调试控制台中监视不透明度被切换的元素的属性,您会注意到只有不透明度被触及。 jQuery 没有触及 z-index,但浏览器以不同的方式呈现不透明度不等于 1 的元素。

我对您的代码做了一些额外的更改: http://jsfiddle.net/radu/4vUc7 /6/

As mentioned in the question linked by jen, this is not a jQuery bug but a browser problem. If you monitor the properties of the element whose opacity is being toggled in a debug console you'll notice that only opacity is being touched. jQuery is not touching the z-index, but the browser renders elements with opacity that isn't equal to 1 differently.

I've made a few extra changes to your code: http://jsfiddle.net/radu/4vUc7/6/.

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