jQuery z-index 不起作用

发布于 2024-09-13 08:12:02 字数 271 浏览 4 评论 0原文

我有一个菜单,悬停时我淡入一个框。在这个框后面我有一个小图标,我想将它移到框前面,以便您可以在悬停时看到它。

这是我的菜单> 导航

我用 jQuery(this).find(".flyer") 尝试过它.css("z-index", 10000); 但它仍然留在后面。 我该如何解决这个问题?

问候麦克斯

i have a menu and on hover i fade a box in. Behind this box i have a small icon and i want to move it in front of the box so you can see it on hover.

Here is my menu > Navigation

I tried it with that jQuery(this).find(".flyer").css("z-index", 10000);
but it stays behind.
How could i manage that problem?

greets Max

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

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

发布评论

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

评论(2

爱的故事 2024-09-20 08:12:02

z-index 仅适用于定位元素,因此您需要为 .flyer 提供 position,如下所示:

.flyer{
    margin: -75px 0 0 0;
    width:53px;
    height:74px;
    position: relative;
}

这是您编辑后可以工作的示例/小提琴,我们只是在悬停时调用此:

$(this).find(".flyer").css("z-index", 10000);    

以及在悬停时调用此:

$(this).find(".flyer").css("z-index", "auto");

z-index only works on positioned elements, so you need to give .flyer a position, like this:

.flyer{
    margin: -75px 0 0 0;
    width:53px;
    height:74px;
    position: relative;
}

Here's your example/fiddle edited to work, we're just calling this on hover:

$(this).find(".flyer").css("z-index", 10000);    

and this on hover out:

$(this).find(".flyer").css("z-index", "auto");
哆啦不做梦 2024-09-20 08:12:02

确保使用 .flyer 选择器引用正确的元素,并且 z-index 不起作用,请尝试使用 缩放属性

Make sure that you reference the proper element with the .flyer selector and z-index does not do the trick, try with the zoom attribute.

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