12345678910111213141516171819202122232425262728293031323334353637383940414243id="nav" class="nav"class="top_nav" id="top_nav"1href="###"菜单一href="###"菜单二href="###"菜单三2href="###"菜单一href="###"菜单二href="###"菜单三3href="###"菜单一href="###"菜单二4href="###"菜单一href="###"菜单二href="###"菜单三
1234567891011121314151617181920212223242526272829303132333435363738394041body {padding:0;margin:0;font-family:"microsoft yahei";background-color:#0c093c;}* {box-sizing:border-box;}.nav {width:400px;transform:translate(-50%,-50%);top:50%;left:50%;position:absolute;}ul {width:100px;height:20px;float:left;/* border:1px solid #ecfcff;*/cursor:pointer;background:black;line-height:20px;}li {height:40px;width:100px;background:#5f6caf;margin-left:-40px;text-align:center;line-height:40px;display:none;/* border:1px solid #ecfcff;*/}ul,li {color:#FFFFFF;font-size:15px;list-style:none;
1234567891011121314151617181920$('ul').hover(function() {$(this).addClass("top_nav").siblings().removeClass("top_nav");$(this).find('li').stop().slideDown(300);$(this).css("background", "red").siblings().css("background", "black");}, function() {$(this).find('li').stop().slideUp(300);});$('li').mouseover(function() {$(this).css({"background": "#fe8761","color": "black","font-size": "18px"});}).mouseout(function() {$(this).css({"background": "#5f6caf","color": "white","font-size": "15px"});});
更新时间:2020-02-09 23:19:58