本文实例讲述了jQuery实现个性翻牌效果导航菜单的方法。分享给大家供大家参考。具体实现方法如下: 复制代码 代码如下: jQuery个性翻牌效果的导航菜单 <br> ul,li{list-style:none;padding:0;margin:0;}<br> #btncell{width:300px;height:100px;border:1px solid #777;margin:50px auto;}<br> #btncell li{width:100px;float:left;height:50px;font-size:14px;text-align:center;line-height:28px;position:relative;z-index:1;}<br> #btncell li a{display:block;height:28px;border:2px solid #333;text-decoration:none;width:50px;background:#888;overflow:hidden;position:absolute;left:25px;top:10px;}<br> <br> var nummove=0;<br> var numout=0;<br> $(function(){<br> $("#btncell li").hover(<br> function(){<br> if(nummove==0)<br> {<br> nummove=1;<br> $("a",this).animate({ height: "0px",top: "25px"}, 80,function(){nummove=0;});<br> $("a",this).animate({ height: "28px",top: "10px"}, 80);<br> $("a",this).css("background","yellow");<br> }<br> },<br> function(){<br> if(numout==0)<br> {<br> numout=1;<br> $("a",this).animate({ height: "0px",top: "25px"}, 80,function(){numout=0;});<br> $("a",this).animate({ height: "28px",top: "10px"}, 80);<br> $("a",this).css("background","#888");<br> numout=0;<br> }<br> }<br> )<br> $("#btncell li a").click(function(){<br> $(this).parents("li").css("z-index","2")<br> $(this).animate({ height: "558px",top: "-255px",width: "1000px",left: "-460px",opacity: 'toggle',lineHeight: '558px',fontSize: '500px'}, 1000);<br> $(this).animate({ height: "28px",top: "10px",width: "50px",left: "25px",opacity: 'toggle',lineHeight: '28px',fontSize: '12px'}, 400);<br> $(this).parents("li").css("z-index","1")<br> })<br> })<br> 预览效果时左下角会提示错误,而且看不到效果,刷新一下就可以看到效果了。 1 2 3 4 5 6 希望本文所述对大家的jQuery程序设计有所帮助。