首页 > 语言 > JavaScript > 正文

鼠标悬浮显示二级菜单效果的jquery实现

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

当鼠标悬浮时显示二级菜单,这种类似的效果,想必大家在浏览网页时经常会遇到吧,下面有个示例,大家可以看看

1.布局:

  1. <div class="show">  
  2. <img src="~/images/head_icon.png" />  
  3.  
  4. <div class="drop" style=" display:none; z-index:80000" id="profileMenu">  
  5. <ul>  
  6. <li>  
  7. <a class="pass" style="cursor: pointer" 
  8. href='#'>  
  9. <span>修改密码</span>  
  10. </a>  
  11. </li>  
  12. <li>  
  13. <a class="quit" style="cursor: pointer" 
  14. href='#' 
  15. ><span>退出</span></a>  
  16. </li>  
  17. </ul>  
  18. </div>  
  19. </div> 

2.js控制:
 

  1. function dropMenu(obj) {  
  2. $(obj).each(function () {  
  3. var theSpan = $(this);  
  4. var theMenu = theSpan.find(".drop");  
  5. var tarHeight = theMenu.height();  
  6. theMenu.css({ height: 0, opacity: 0 });  
  7.  
  8.  
  9. var t1;  
  10.  
  11.  
  12. function expand() {  
  13. clearTimeout(t1);  
  14. //theSpan.find('a').addClass("selected");  
  15. theMenu.stop().show().animate({ height: tarHeight, opacity: 1 }, 200);  
  16. }  
  17.  
  18.  
  19. function collapse() {  
  20. clearTimeout(t1);  
  21. t1 = setTimeout(function () {  
  22. // theSpan.find('a').removeClass("selected");  
  23. theMenu.stop().animate({ height: 0, opacity: 0 }, 200, function () {  
  24. $(this).css({ display: "none" });  
  25. });  
  26. }, 250);  
  27. }  
  28.  
  29.  
  30. theSpan.hover(expand, collapse);  
  31. theMenu.hover(expand, collapse);  
  32. });  
  33. }  
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选