;(function(window){
    $('.menuitem').hover(function(){
        $('>a',this).css('background-color','#60AEEC');

        $('.subnav',this).show();

       $('.subnav',this).width(function(){
           return $('.subnav').children("li:visible").width()*$('.subnav').children("li:visible").length;
       });
       var sleft = $(this).offset().left-($('.subnav').children("li:visible").width()*$('.subnav').children("li:visible").length-150)/2;
       $('.subnav',this).offset({left:sleft});
    },function(){
        if( !$(this).hasClass('selected') )
            $('>a',this).css('background-color','transparent');
        $('.subnav',this).hide();
    });
     /*$('.subnav').hover(function(){},function(){
        $('>a',this).css('background-color','transparent');
        $(this).hide();
    });*/

})(window);

posted on 2016-03-18 15:36  杨杨0708  阅读(495)  评论(0编辑  收藏  举报