下拉菜单悬停不好?

时间:2013-08-01 12:13:30

标签: jquery menu

请问下拉菜单有问题。当我在菜单中的项目,它有子项目时,它们会告诉我但是当我将鼠标移到它们上面时,项目的背景消失了,我不知道,如何解决它。 这是网站:http://www.poridsiweb.cz/vojta/

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

试试这段代码:

$("ul#nav").children('li').mouseenter(function(){
    $(this).find('a:first').stop(true,true).animate({backgroundPosition:"(0 -5px)"}, 200);
}).mouseleave(function(){
    $(this).find('a:first').animate({backgroundPosition:"(0 -150px)"}, 200);
});

请注意,此代码未经过测试。