gpt4 book ai didi

javascript - 在 Firefox 浏览器中悬停时,导航子菜单不可见?

转载 作者:行者123 更新时间:2023-11-28 10:24:04 25 4
gpt4 key购买 nike

我的导航位于页面底部,子菜单出现在导航上方。

我还有一些 jquery,它在导航悬停时淡出内容。但是我认为这个查询干扰了子菜单,因为当鼠标悬停在它上面时它不会停留,这似乎只在 firefox 浏览器中?

请在 firefox 浏览器上查看这里 http://intelligen.info/index.html

$("#nav").hover(
function () {
$(".index-content").fadeTo(700,0.3);
},
function () {
$(".index-content").fadeTo(700,1);
}
);

最佳答案

你的差距被设置得很高,在悬停和你悬停的元素之间使用底部留下空白。此外,我不会使用 jQuery 来添加 CSS 元素,例如淡入淡出。您可以使用转换来做到这一点。

#nav li:hover nav {
bottom: 12px; /** Change to 12 to fix **/
display: block;
left: 0;
position: absolute;
}

关于javascript - 在 Firefox 浏览器中悬停时,导航子菜单不可见?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23832802/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com