首页 > 语言 > JavaScript > 正文

js实现顶部可折叠的菜单工具栏效果实例

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

这篇文章主要介绍了js实现顶部可折叠的菜单工具栏效果,可实现鼠标滑过菜单工具栏出现折叠与展开效果,涉及javascript鼠标事件及样式的操作技巧,需要的朋友可以参考下

本文实例讲述了js实现顶部可折叠的菜单工具栏效果。分享给大家供大家参考。具体实现方法如下:

 

 
  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"
  4. <head> 
  5. <title>可以折叠的菜单工具栏</title> 
  6. <style> 
  7. html,body{ 
  8. margin:0; 
  9. body{ 
  10. url(img.jpg) repeat-x; 
  11. ha{ 
  12. margin:0 auto; 
  13. img{ 
  14. border:none; 
  15. #fx_topToolbar{ 
  16. position:relative;top:-76px;left:0; 
  17. margin:0 auto;height:92px; 
  18. background:#0C3E74; width:700px; 
  19. text-align:center; 
  20. #fx_topToolbar .shell{ 
  21. margin:0 auto;padding:13px 0; 
  22. #btn_offOn{ 
  23. position:absolute;bottom:-8px; 
  24. left:20px;height:24px; width:150px; 
  25. background:url(img34.gif) no-repeat; 
  26. #btn_offOn a{ 
  27. display:block;zoom:1;height:24px; 
  28. position:relative;right:-16px; 
  29. background:url(tip.gif) no-repeat 100% 0; 
  30. </style> 
  31. <script> 
  32. (JS={ 
  33. $:function(o){return typeof o=="string"?document.getElementById(o):o}, 
  34. on:function(o,type,fn){ 
  35. o.attachEvent?o.attachEvent('on'+type,function(){fn.call(o)}):o.addEventListener(type,fn,false); 
  36. return JS.on}, 
  37. move:function(who,attr,val,s,fn){ 
  38. var fm=parseInt(who.style[attr])||0; 
  39. clearInterval(who['timer_'+attr]); 
  40. var iFx=(function(form,to,s){ 
  41. return function (){ 
  42. return form+=Math[form<to?'ceil':'floor']((to-form)*(s||0.3))}; 
  43. })(fm,val,s); 
  44. who['timer_'+attr]=setInterval(function (){ 
  45. var v=iFx(); 
  46. who.style[attr]=v+'px'
  47. if(v==val){ fn&&fn.call(who);clearInterval(who['timer_'+attr]);}; 
  48. },18); 
  49. }).on(window,'load',function (){ 
  50. var Q=JS.$('fx_topToolbar');Q.style.top='-74px'
  51. JS.on(JS.$('btn_offOn'),'mouseover',function(){JS.move(Q,'top',0)}) 
  52. (Q,'mouseout',function (){Q.outTimer=setTimeout(function(){JS.move(Q,'top',-74)},10)}) 
  53. (Q,'mouseover',function (){clearTimeout(this.outTimer)}); 
  54. }) 
  55. </script> 
  56. </head> 
  57. <body> 
  58. <div id="fx_topToolbar"
  59. <div class="shell"
  60. <a href="#" title=""
  61. <img src="1.gif" width="231" height="58" alt="" /> 
  62. </a> 
  63. <a href="#" title=""
  64. <img src="2.gif" width="231" height="58" alt="" /> 
  65. </a> 
  66. </div> 
  67. <div id="btn_offOn"><a href="#" title=""></a></div> 
  68. </div> 
  69. </body> 
  70. </html> 

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

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

图片精选