4

我找到了制作下拉菜单的指南,它说当您停止将鼠标悬停在主菜单项上时,下拉菜单将保持固定。但是,我的菜单消失了,无法按项目!

如您所见,音乐菜单位具有下拉(或在本例中为“右下拉”)菜单。

在这里小提琴:http: //jsfiddle.net/Gb2aS/

代码在这里:

HTML:

<!DOCTYPE HTML>
<html>
<head>
    <link href="stylesheet.css" rel="stylesheet" type="text/css">
    <title>Home</title>
</head>
<body>
    <div ID="menubox">
        <ul>
        <li><a href="http://folk.ntnu.no/arnstekl/" class="link">Home</a></li>
        <li><a href="#" class="link">Music</a>
            <ul>
                <li><a href="https://soundcloud.com/arnsteinkleven/" class="link">My music</a></li>
                <li><a href="http://folk.ntnu.no/arnstekl/gilberto.html" class="link">The Joao Gilberto project</a></li>
           </ul></li>
        <li><a href="https://www.github.com/arnstein" class="link">Github</a></li>

        <li><a href="http://www.flickr.com/photos/92472314@N03/" class="link">Pictures</a></li>

        </ul>

    </div>
    <div ID="circle">
        <p ID="title"> A <br> r <br> n <br> s <br> t <br> e <br> i <br> n </p>
    </div>
    </body>
</HTML>

CSS:

#menubox
{
    width: 8%;
    height: 30%;
    border: 10% solid #C7D93D;
    border-radius: 5%;
    position: fixed;
    margin-top: 12%;
    margin-left: 18%;
    font-family: Ubuntu, Lucida console, Futura;
    list-style: none;
    float: left;
}


#menubox ul li a
{
    text-align: left;
    font-size: 200%;
    color: #FFF0A5;
}

#menubox ul li
{
    color: #468966;
    font-family: Ubuntu, Lucida console, Futura;
    float: left;
    margin-right: 10px;
    position: relative;
}

#menubox ul
{
    color: #468966;
    font-family: Ubuntu, Lucida console, Futura;
}

#menubox ul ul
{
    position: absolute;
    left: -9999px;
    list-style: none;
}

#menubox ul ul li
{
    float: left;
    margin-left: 40%;
    position: relative;
    font-size: 60%;
    text-align: left;

}

#menubox ul ul a
{
    white-space: nowrap;
}

#menubox ul li:hover a
{
    text-decoration: none;
    color: #FFB03B;
} 

#menubox ul li:hover ul
{
    left: 0;
}

#menubox ul li:hover ul a
{
    text-decoration: none;
    color: #FFB03B;
}

#menubox ul li:hover ul li a:hover
{
    color: #FFB03B;
}


div p
{
    color: #FFF0A5;
    text-align: center;
    position: relative;
    vertical-align: middle;
    display: inline-block;
    margin-top: 300px;
    line-height: 60px;
}


#circle
{
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background-color: #B64926;
    width: 500px;
    height: 500px;
    display: block;
    position: fixed;
    margin-top: 9%;
    margin-left: 52%;
    text-align: center;
}

#title
{
    text-color: #FFF0A5;
    font-size: 350%;
    display: inline;
    text-align: center;
}

body
{
    height: 100%;
    width: 100%;
    background-color: #468966;
    font-family: Ubuntu, Lucida console, Futura;
}

.link
{
    text-color: #FFF0A5;
    text-decoration: none;
    text-align: left;
}
4

3 回答 3

2

问题是因为您的子列表是偏移的,所以光标必须从主菜单项和子菜单通过死区。这将解决您的问题:

#menubox ul li:hover ul
{
    left: 0;
    top: 0;
    z-index:100;
}

正如 Daniel Gimenez 上面解释的那样,子菜单保持可见的原因是因为它是主 ul 项的子菜单,因此如果将光标保持在子菜单上,浏览器会将光标保持在原始菜单项上视为好吧, :hover css 仍然存在。

它对于下拉/弹出菜单非常有效,因为即使子对象物理显示在其父对象之外,从代码的角度来看,它仍然在父对象“内部”。但是,如果两者之间存在任何物理间隙并且鼠标越过该间隙,则:hover 规则将被禁用并且子菜单消失。

于 2013-06-28T15:51:30.170 回答
1

你的 css 有很多东西需要倾注。所以我只是把它归结为基础。我相信您的问题与主链接和子菜单之间的差距有关。

CSS 的解释 * 锚是块内联块类型,具有父 li 和 ul 的确切宽度。* 子菜单在 li's 里面。因此,当 li 悬停在上方时,它们是可见的。子菜单是可见的,因为它是 li 的子菜单。* 因为锚点是 100% 并且拉伸 li,与子菜单相邻,所以当鼠标移到上面时,没有间隙,所以子菜单仍然可见。

jsFiddle

#menubox { 
    position: absolute;
    left: 100px;
    top: 100px;
}

#menubox ul {

    display:inline-block;
    padding-left:0;
}

#menubox > ul {
    width: 100px;
}

#menubox > ul ul {
    position:absolute;
    display: none;
    width: 200px;

}
#menubox li {
    list-style-type:none;
    display:block;
}

#menubox li:hover {
    background:red;
}

#menubox a {
    display:inline-block;
    width:100%;
}

#menubox ul li:hover ul {
    display: inline-block;
    background: orange;
}
于 2013-06-28T15:42:45.143 回答
1

我在弹出的列表中添加了一些填充,基本上在它周围创建了一个块。当您的鼠标在该块上时,它不会消失。

http://jsfiddle.net/Gb2aS/5/

#menubox ul ul
{
    position: absolute;
    left: -9999px;
    padding: 100px;
    list-style: none;
}

然而,有一个问题是绘制的圆圈被放在列表的顶部,但我会把它留给你。

但是,我确实更喜欢丹尼尔的解决方案。为链接提供自己的类是一种更好的处理方式。你最好看看他的解决方案并将其调整为你想要的。

于 2013-06-28T15:44:56.900 回答