我有这个超级菜单,我希望在悬停时显示并保持打开,直到用户离开超级菜单或触发区域。我有它工作onClick,但我似乎无法让它工作在悬停。任何帮助都会非常感激。
<div class="down">
<div id="showb">
<a href="#" id="menu-show" class="down"></a>
</div><!-- end show button -->
<div id="hideb">
<a href="#" id="menu-hide" class="up"></a>
</div><!--end hide button -->
<div id="menu" style="display: block;">
<div class="menu-main">Menu Contents</div>
<div class="menu-bottom"></div>
</div>
</div>
// hides the menu as soon as the DOM is ready
// (a little sooner than page load)
jQuery('#menu').hide();
jQuery('#hideb').hide();
// shows the menu on clicking the noted link
jQuery('a#menu-show').click(function() {
jQuery('#showb').hide();
jQuery('#hideb').show();
jQuery('#menu').slideDown();
return false;
});
// hides the menu on clicking the noted link
jQuery('a#menu-hide').click(function() {
jQuery('#showb').show();
jQuery('#hideb').hide();
jQuery('#menu').slideUp();
return false;
});
你也可以在这里看到http://jsfiddle.net/notanothercliche/5CDEE/
<div id="menu">
<div id="show-menu">
</div>
</div>
<div id="mega-menu">
<div class="menu-main">Menu Contents</div>
<div class="menu-bottom"></div>
</div>
jQuery(document).ready(function() {
// open
jQuery('#show-menu').bind('mouseenter', function() {
// increase the height of our container
jQuery('#menu').height('300px');
// do the main animation
jQuery('#show-menu').stop().css({
'backgroundPosition': 'bottom'
}, 300);
jQuery('#mega-menu').slideDown(500);
});
// close
function closeMainNav() {
jQuery('#show-menu').stop().css({
'backgroundPosition': 'top'
}, 300);
jQuery('#mega-menu').slideUp(500);
jQuery('#menu').height('17px');
}
// close when the following happens
jQuery('#menu').bind('mouseleave', closeMainNav);
});
对于点击版本更好,我使用了toggleClass和slideToggle。这种方式更短的编码。请参阅此处的演示http://jsfiddle.net/notanothercliche/5CDEE/
<a href="#" id="menu-show" class="down"></a>
<div id="menu">
<div class="menu-main">
Menu Contents
<ul>
<li>Menu Item 1</li>
<li>Menu Item 2</li>
<li>Menu Item 3</li>
<div class="clear"></div>
</ul>
More HTML content
</div>
<div class="menu-bottom"></div>
</div>
jQuery(document).ready(function() {
// hides the menu as soon as the DOM is ready
// (a little sooner than page load)
jQuery('#menu').hide();
// shows the menu on clicking the noted link
jQuery('a#menu-show').click(function() {
// toggles the indicator arrow
jQuery('a.down').toggleClass('up')
jQuery('#menu').slideToggle();
return false;
});
});
答案 0 :(得分:1)
为什么不改为pure CSS menu?
答案 1 :(得分:0)
您的解决方案的问题是如何布局html和css。我在这里进行了调整
这不会隐藏向上按钮,而是交换课程。需要处理的动画之间存在细微的差距,但我认为这仍然取决于元素的定位。将鼠标悬停在周围的div
上可能是值得的