here is a link to jsfiddle我正在编写一个满足我需求的jquery菜单。我知道没有必要在这里重新转动轮子,但这也是一种学习经验。
另外,我知道代码很难看,但是一旦我正常工作,我会重新构建并清理它。
我的问题是,当我将鼠标悬停在下拉链接上时,它会消失。我希望它留在那里,父菜单激活。任何帮助表示赞赏。
以下是一些代码:
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://code.jquery.com/ui/1.10.0/jquery-ui.js"></script>
</head>
<body>
<div>
<ul>
<li>
<div class="menu-item"></div>
<div class="menu-text">text</div>
<div class="dropdown">
<div class="dropdown-item"><a href="#">item 1</a></div>
<div class="dropdown-item"><a href="#">item 2</a></div>
<div class="dropdown-item"><a href="#">item 3</a></div>
</div>
</li>
<li><div class="menu-item"></div><div class="menu-text">texttexttext</div></li>
<li><div class="menu-item"></div><div class="menu-text">tetexttexttexttexttexttexttextxt</div></li>
</ul>
</div>
<script>
$(function() {
$("div.menu-text").mouseover(function () {
$(this).prevAll('div.menu-item').animate({height: '100%'},
{
duration: 700,
specialEasing: {height: 'easeOutQuint'}
}
);
if($(this).siblings('div.dropdown').is(':hidden')){
$(this).siblings('div.dropdown').slideDown();
}
});
$("div.menu-text").mouseout(function () {
$(this).prevAll('div.menu-item').animate({height: '10px'}, 700);
if($(this).siblings('div.dropdown').is(':visible')){
$(this).siblings('div.dropdown').slideUp();
}
});
$("div.dropdown-item a").hover(function () {
$(this).parent().siblings('div.menu-item').css("display","block");
$(this).parent().css("display","block");
});
});
</script>
</body>
</html>
这是CSS:
li {
background-color: #ccc;
position: relative;
color: #fff;
z-index: -2;
float: left;
}
div.menu-item {
background-color: #000;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 10px;
z-index: -1;
}
div.menu-text {
color: #fff;
margin: 0;
padding: 20px 10px;
}
div.dropdown {
display: none;
position: absolute;
}
div.dropdown-item a {
padding: 10px;
background-color: #1E4b55;
display: block;
white-space: nowrap;
}
答案 0 :(得分:1)
你的JS还有很大的改进空间,但这样做可以解决问题:
$(function() {
$("li").hover(
function() {
$(this).find('div.menu-item').animate({height: '100%'},
{
duration: 700,
specialEasing: {
height: 'easeOutQuint'
}
});
if($(this).find('div.dropdown').is(':hidden')) {
$(this).find('div.dropdown').slideDown();
}
},
function() {
$(this).find('div.menu-item').animate({height: '10px'}, 700);
if($(this).find('div.dropdown').is(':visible')){
$(this).find('div.dropdown').slideUp();
}
}
);
});
我正在使用.hover()
,它有两个函数,第一个用于悬停开始,第二个用于悬停结束时。您还需要将其移动到父元素(li
),以便在顶部子元素上保持悬停。
答案 1 :(得分:1)
请参阅:http://jsfiddle.net/Y9knm/
$(function () {
$("li").hover(
function () {
$(this).find('div.menu-item').stop().animate({
height: '100%'
}, {
duration: 700,
specialEasing: {
height: 'easeOutQuint'
}
});
$(this).find('div.dropdown').slideDown();
},
function () {
$(this).find('div.menu-item').stop().animate({
height: '10px'
}, 700);
$(this).find('div.dropdown').stop().slideUp();
});
});
答案 2 :(得分:0)
jsfiddle示例不完整。需要jquery缓动库。不包括在jsfiddle示例中。