0

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

谢谢您的帮助。

4

1 回答 1

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);
});

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

于 2013-08-01T12:27:25.737 回答