首页 > 语言 > JavaScript > 正文

jQuery实现的动态伸缩导航菜单实例

2024-05-06 16:19:39
字体:
来源:转载
供稿:网友

这篇文章主要介绍了jQuery实现的动态伸缩导航菜单,实例分析了jQuery鼠标事件及animate、hide等方法的使用技巧,需要的朋友可以参考下

本文实例讲述了jQuery实现的动态伸缩导航菜单。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"><head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"
  5. <title>jquery select</title> 
  6. <script type="text/javascript" src="jquery-1.6.2.min.js"></script> 
  7. <style type="text/css"
  8. body {padding:10px; font-family:"宋体"
  9. * {margin:0; padding:0; font-size:12px;} 
  10. a{ color: #333;} 
  11. ul,li { 
  12. list-style-type:none; 
  13. .menu_list li a { 
  14. display:block; line-height:30px; 
  15. text-align:center; height:30px; 
  16. background:#e8e8e8; border-bottom:1px solid #ccc; 
  17. .hover { 
  18. background:#e8e8e8; 
  19. .div1{ 
  20. height:200px; display:none; 
  21. padding:5px; 
  22. .menu_list{ 
  23. width:200px; background:#f2f2f2; 
  24. border:1px solid #ccc; 
  25. </style> 
  26. <script type="text/javascript"
  27. $(document).ready(function() 
  28. $(".menu_list ul li").click(function() 
  29. if($(this).children(".div1").is(":hidden")) 
  30. //判断对象是显示还是隐藏 
  31. if(!$(this).children(".div1").is(":animated")){ 
  32. //如果当前没有进行动画,则添加新动画 
  33. $(this).children(".div1").animate({height:'show'},1000) 
  34. .end().siblings().find(".div1").hide(1000);} 
  35. }else
  36. if(!$(this).children(".div1").is(":animated")){ 
  37. $(this).children(".div1").animate({height:'hide'},1000) 
  38. .end().siblings().find(".div1").hide(1000);} 
  39. ); 
  40. }); 
  41. </script> 
  42. <div class="menu_list" id="secondpane"
  43. <ul> 
  44. <li class=""
  45. <a href="javascript:void(0);" class="a1">网页特效</a> 
  46. <div class="div1">js特效,网页特效</div> 
  47. </li> 
  48. <li class=""
  49. <a href="javascript:void(0);" class="a1">网页模板</a> 
  50. <div class="div1">网页模板下载</div> 
  51. </li> 
  52. <li class=""
  53. <a href="javascript:void(0);" class="a1" style="border:none;">联系我们 </a> 
  54. <div class="div1" style="border-top:1px solid #ccc;">关于武林网</div> 
  55. </li> 
  56. </ul> 
  57. </div> 
  58. </body> 
  59. </html> 

希望本文所述对大家的jQuery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选