首页 > 编程 > JavaScript > 正文

JavaScript实现的伸展收缩型菜单代码

2019-11-20 11:28:14
字体:
来源:转载
供稿:网友

本文实例讲述了JavaScript实现的伸展收缩型菜单代码。分享给大家供大家参考。具体如下:

这是一款真正的JavaScript伸展收缩型菜单,鼠标放上看一看,是不是很酷?鼠标划出菜单项的时候,背景会伸长。菜单没有加链接,想用的自己加,再美化一下,绝对够个性吧。

运行效果截图如下:

在线演示地址如下:

http://demo.VeVB.COm/js/2015/js-zkss-menu-codes/

具体代码如下:

<html><head><title>真正的JavaScript伸展收缩型菜单</title><style type="text/css">#con div{width:100px;margin:5px 0 5px 0;font-size:9pt;height:23px;color:white;}</style><div id="con"><div style="background-color:red">红色菜单</div><div style="background-color:green">绿色菜单 </div><div style="background-color:blue">蓝色</div><div style="background-color:yellow">黄色</div><div style="background-color:pink">这是什么色</div><div style="background-color:orange">桔色</div><div style="background-color:black">黑色超酷</div></div><script language="javascript">function $(e){return document.getElementById(e);}function roulMenu(e,maxW,minW){ var divs = $(e).getElementsByTagName('div'); for(var i=0;i<divs.length;i++){ (function(){ var tims,timss; divs[i].onmouseover=function(){  var self = this;  clearInterval(timss);  tims=setInterval(function(){   if(self.offsetWidth<maxW){   self.style.width = self.offsetWidth + 5 + 'px';   }else{   clearInterval(tims);   }  },10);  }  divs[i].onmouseout=function(){  var self = this;  clearInterval(tims);  timss=setInterval(function(){   if(self.offsetWidth>minW){   self.style.width = self.offsetWidth - 5 + 'px';   }else{   clearInterval(timss);   }  },10);  } })(); }}//使用方法roulMenu('con',200,100);</script> 

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

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