jQuery实现的动态伸缩导航菜单实例
更新时间:2015年05月07日 16:03:58 投稿:shichen2014
这篇文章主要介绍了jQuery实现的动态伸缩导航菜单,实例分析了jQuery鼠标事件及animate、hide等方法的使用技巧,需要的朋友可以参考下
本文实例讲述了jQuery实现的动态伸缩导航菜单。分享给大家供大家参考。具体实现方法如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>jquery select</title> <script type="text/javascript" src="jquery-1.6.2.min.js"></script> <style type="text/css"> body {padding:10px; font-family:"宋体"} * {margin:0; padding:0; font-size:12px;} a{ color: #333;} ul,li { list-style-type:none; } .menu_list li a { display:block; line-height:30px; text-align:center; height:30px; background:#e8e8e8; border-bottom:1px solid #ccc; } .hover { background:#e8e8e8; } .div1{ height:200px; display:none; padding:5px; } .menu_list{ width:200px; background:#f2f2f2; border:1px solid #ccc; } </style> <script type="text/javascript"> $(document).ready(function() { $(".menu_list ul li").click(function() { if($(this).children(".div1").is(":hidden")) //判断对象是显示还是隐藏 { if(!$(this).children(".div1").is(":animated")){ //如果当前没有进行动画,则添加新动画 $(this).children(".div1").animate({height:'show'},1000) .end().siblings().find(".div1").hide(1000);} }else{ if(!$(this).children(".div1").is(":animated")){ $(this).children(".div1").animate({height:'hide'},1000) .end().siblings().find(".div1").hide(1000);} } } ); }); </script> <div class="menu_list" id="secondpane"> <ul> <li class=""> <a href="javascript:void(0);" class="a1">网页特效</a> <div class="div1">js特效,网页特效</div> </li> <li class=""> <a href="javascript:void(0);" class="a1">网页模板</a> <div class="div1">网页模板下载</div> </li> <li class=""> <a href="javascript:void(0);" class="a1" style="border:none;">联系我们 </a> <div class="div1" style="border-top:1px solid #ccc;">关于脚本之家</div> </li> </ul> </div> </body> </html>
希望本文所述对大家的jQuery程序设计有所帮助。
您可能感兴趣的文章:
相关文章
jQuery修改li下的样式以及li下的img的src的值的方法
这篇文章主要为大家介绍了jQuery如何修改li下的样式,以及修改li下的img的src的值,示例代码很简单,一看就会2014-11-11Jquery的each里用return true或false代替break或continue
Jquery的each里面用return false代替break;return ture 代替continue2014-05-05在jQuery 1.5中使用deferred对象的代码(翻译)
Deferred是jQuery1.5新增的一个特性,很多人把它翻译成 “异步队列”,我觉得比较靠谱,毕竟和“延迟”没啥关系,不过这篇文章中我还采用deferred这个单词。2011-03-03
最新评论