分页显示代码js.doc

上传人:小** 文档编号:16793818 上传时间:2020-10-25 格式:DOC 页数:15 大小:73KB
返回 下载 相关 举报
分页显示代码js.doc_第1页
第1页 / 共15页
分页显示代码js.doc_第2页
第2页 / 共15页
分页显示代码js.doc_第3页
第3页 / 共15页
点击查看更多>>
资源描述
一个封装了的选项卡效果js井底的蛙/* 选项卡封装 by 井底的蛙 2008-2-4*/opCard = function() this.bind = new Array(); this.index = 0; /默认显示哪个选项卡,从0开始 this.style = new Array(); /, this.overStyle = false; /选项是否有over, out变换样式事件,样式为this.style2 this.overChange = false; /内容是否用over, out直接激活 this.menu = false; /菜单类型 this.nesting = false,false,; /是否嵌套,后面2个参数是指定menu,info的子集深度所用id this.auto = false, 1000; /自动滚动true,2000 this.timerID = null; /自动播放的 this.menutimerID = null; /菜单延时的 this.creat = function(func) var _arrMenu = document.getElementById(this.bind0).getElementsByTagName(this.bind1); var _arrInfo = document.getElementById(this.bind2).getElementsByTagName(this.bind3); var my = this, i; var argLen = arguments.length; var arrM = new Array(); if(this.nesting0 | this.nesting1) / 有选项卡嵌套 / 过滤出需要的数据 var arrMenu = this.nesting0?getChilds(_arrMenu,this.bind0,2):_arrMenu; var arrInfo = this.nesting1?getChilds(_arrInfo,this.bind2,3):_arrInfo; else var arrMenu = _arrMenu; var arrInfo = _arrInfo; var l = arrMenu.length; if(l!=arrInfo.length)alert(菜单和内容必须拥有相同的数量n如果需要,你可以放一个空的在那占位。) / 修正 if(this.menu)this.auto=false;this.overChange=true; /如果是菜单,则没有自动运行,有over, out直接激活 / 循环添加各个事件等 for(i=0;il;i+) arrMenui.cName = arrMenui.className; arrMenui.className = (i!=this.index | this.menu)?getClass(arrMenui,this.style0):getClass(arrMenui,this.style1); /加载样式,菜单的话统一样式 if(arrMenui.getAttribute(skip) / 需要跳过的容器 if(this.overStyle | this.overChange) / 有over, out 改变样式 或者 激活 arrMenui.onmouseover = function()changeTitle(this, 2);autoStop(this, 0); arrMenui.onmouseout = function()changeTitle(this, 0);autoStop(this, 1); arrMenui.onclick = function()if(argLen=1)func() arrInfoi.style.display = none; continue; if(i!=this.index | this.menu)arrInfoi.style.display=none; /隐藏初始化,菜单的话全部隐藏 arrMenui.index = i; /记录自己激活值序号 arrInfoi.index = i; if(this.overChange) /有鼠标over, out事件 arrMenui.onmouseover = function()changeOption(this);my.menu?changeMenu(1):autoStop(this, 0); arrMenui.onmouseout = function()changeOption(this);my.menu?changeMenu(0):autoStop(this, 1); else /onclick触发 arrMenui.onclick = function()changeOption(this);autoStop(this, 0);if(argLen=1)func() if(this.overStyle) / 有over, out 改变样式 arrMenui.onmouseover = function()changeTitle(this, 2);autoStop(this, 0); arrMenui.onmouseout = function()changeTitle(this, 0);autoStop(this, 1); else / 没有over, out 改变样式 if(this.auto0) / 有自动运行 arrMenui.onmouseover = function()autoStop(this, 0); arrMenui.onmouseout = function()autoStop(this, 1); if(this.auto0 | this.menu) /arrinfo 控制自动播放 arrInfoi.onmouseover = function()my.menu?changeMenu(1):autoStop(this, 0); arrInfoi.onmouseout = function()my.menu?changeMenu(0):autoStop(this, 1); /for结束 if(this.auto0) this.timerID = setTimeout(autoMove,this.auto1) / 自动播放 function autoMove() var n; n = my.index + 1; if(n=l)n=0; while(arrMenun.getAttribute(skip) / 需要跳过的容器 n += 1; if(n=l)n=0; changeOption(arrMenun); my.timerID = setTimeout(autoMove,my.auto1); / onmouseover时,自动播放停止。num:0为over,1为out。 obj暂时无用。 -_-! function autoStop(obj, num) if(!my.auto0)return; /if(obj.index=my.index) num = 0 ? clearTimeout(my.timerID) : my.timerID = setTimeout(autoMove,my.auto1); / 改变选项卡 function changeOption(obj) arrMenumy.index.className = getClass(arrMenumy.index,my.style0); /修改旧内容 arrInfomy.index.style.display = none; /隐藏旧内容 obj.className = getClass(obj,my.style1); /修改为新样式 arrInfoobj.index.style.display = ; /显示新内容 my.index = obj.index; /更新当前选择的index /* 只有onclick时,overStyle的onmouseover,onmouseout事件。用来预激活 obj:目标对象。 num:1为over,0为out */ function changeTitle(obj, num) if(!my.overStyle)return; if(obj.index!=my.index)obj.className = getClass(obj,my.stylenum) /* 菜单类型时用 obj:目标对象。 num:1为over,0为out */ function changeMenu(num) if(!my.menu)return; num=0?my.menutimerID = setTimeout(menuClose,1000):clearTimeout(my.menutimerID) /关闭菜单 function menuClose() arrInfomy.index.style.display = none; arrMenumy.index.className = getClass(arrMenumy.index,my.style0); / 得到className(防止将原有样式覆盖) function getClass(o, s) if(o.cName=)return s elsereturn o.cName + + s /嵌套情况下得到真正的子集 function getChilds(arrObj, id, num) var depth = 0; var firstObj = my.nestingnum=?arrObj0:document.getElementById(my.nestingnum); /得到第一个子集 do /计算深度 if(firstObj.parentNode.getAttribute(id)=id)breakelsedepth+=1 firstObj = firstObj.parentNode; while(firstObj.tagName.toLowerCase()!=body) / body强制退出。 var t; var arr = new Array(); for(i=0;iarrObj.length;i+) /过滤出需要的数据 t = arrObji, d = 0; do if(t.parentNode.getAttribute(id)=id & d = depth) arr.push(arrObji);break; /得到数据 else if(d=depth)break;d+=1; t = t.parentNode; while(t.tagName.toLowerCase()!=body) / body强制退出 return arr; window.onload = function() var aa = new opCard(); aa.bind = a1,div,b1,div; aa.style = a1_0,a1_1,a1_0; aa.index = 0; aa.nesting = false,true, aa.creat(); aa =null; / 默认的onclick中,第一个例子 var bba = new opCard(); bba.bind = a2,li,b2,div; bba.style = style1,style2,style3; bba.overStyle = true; bba.creat(); bba = null; / 默认的onclick中,第二个例子 var bbb = new opCard(); bbb.bind = a3,li,b3,div; bbb.style = style1,style2,style3; bbb.overStyle = true; bbb.creat(); bbb = null; / onmousover触发中的例子 var cc = new opCard(); cc.bind = a4,li,b4,div; cc.style = style1,style2,style3; cc.overStyle = true; cc.overChange = true; cc.creat(); cc = null; /自动播放auto第一个例子 var dd = new opCard(); dd.bind = a5,li,b5,div; dd.style = style1,style2,style3; dd.auto = true, 3000; dd.creat(); dd = null; /自动播放auto第二个例子 var ee = new opCard(); ee.bind = a6,li,b6,div; ee.style = style1,style2,style3; ee.auto = true, 2000; ee.overChange = true; ee.creat(); ee = null; /自动播放auto第三个例子 var ff = new opCard(); ff.bind = a7,li,b7,div; ff.style = style1,style2,style3; ff.auto = true, 1000; ff.overChange = true; ff.overStyle = true; ff.creat(); ff = null; /菜单导航例子 var gg = new opCard(); gg.bind = a8,li,b8,div; gg.style = style1,style2,style3; gg.overStyle = true; gg.menu = true; gg.creat(); gg = null; /其他应用 var hh = new opCard(); hh.bind = a9,li,a9,li; hh.style = style4,style4,style4; /hh.overStyle = true; hh.auto = true, 1000; hh.creat(); hh = null;bodyfont-size:12px; font-family:Verdana,宋体;p,ulmargin:0px; padding:0px;td,divfont-size:12px.a1_0 border:1px dotted #3399FF; width:120px; background-color:#f5f5f5; margin:3px; padding:2px 0px; cursor:pointer;.a1_1 border:1px solid #FF9900; width:120px; margin:3px; padding:2px 0px; cursor:pointer;.testtext-decoration:underline;#b1 div.sborder:1px solid #999999; width:90%; height:500px; margin:3px; padding:10px; overflow-y:auto; line-height:18px;#b1 div.s strongcolor:#0066FF;/* */.style1float:left; width:80px; background-color:#f5f5f5; border:1px solid #3399FF; text-align:center; margin-right:2px; list-style-type:none; cursor:pointer;.style2float:left; width:80px; background-color:#f5f5f5; border:1px solid #FF9900; text-align:center; margin-right:2px; list-style-type:none; cursor:pointer;.style3float:left; width:80px; background-color:#f5f5f5; border:1px solid #666666; text-align:center; margin-right:2px; list-style-type:none; cursor:pointer;#a2,#a3,#a4,#a5,#a6,#a7,#a8 height:22px;#b2 div,#b3 div,#b4 div,#b5 div,#b6 div,#b7 divborder:1px solid #FF9900; height:100px; width:400px; padding:5px; overflow-y:auto;#b8 divborder:1px solid #FF9900; height:20px; width:350px; padding:2px 5px;#b8 div amargin-right:20px;.style4float:left; background-color:#999999; text-align:left; list-style-type:none; padding:2px 5px; color:#FFFFFF; 简单介绍 默认的onclick onmousover触发 自动播放auto 菜单导航 关于嵌套 其他应用 一些说明         封装了一个选项卡,不过已经不像选项卡了-_-! 现稍微说明下吧,如果不明白的话,旁边有几个例子可能说明起来更清楚些 obj.bind = a1,td,b1,div; 绑定id=a1下的td标签为菜单,绑定id=b1下的div标签为内容,简单么? td标签的数量和div标签的数量必须相同 (若不需要显示内容,只显示菜单话,可以这个在td标签上加<td skip=true>) 如果id=a1下的td标签有嵌套表格,这样的话,就不是所有的td都是菜单,这时候需要用下nesting obj.nesting = false,true,; 当标签tag有嵌套时,需要用到这个 比如选项卡内容是放在div容器里,而本身这个内容里也有div标签,这时就需要用到 菜单嵌套为false,内容嵌套为true,且会自动判断出内容标签,多数时候这样就可以了 判断方法为,认定getElementsByTagName后第一个标签为内容第一项,其他的就用这个第一项的深度来判断 但有些情况下,这样还是不行 我用后面2个参数做id来指定菜单或者内容的第一项nesting = false,true,q2; 这样就肯定不会错了(不明白的话看下例子就简单多了) obj.index = 0; 默认显示第几个选项卡,序号从0开始 obj.style = c1,c2,c3 菜单加载的样式的className: 菜单未选中的className是c1 菜单选中的className是c2 菜单onmouseover的className是c3 obj.overStyle = false; 选项卡是否有onmouseover, onmouseout变换样式事件非激活选项卡内容,对应的样式为style2 obj.overChange = false; 选项卡内容是否用onmouseover, onmouseout直接激活 obj.menu = false; 选项卡是菜单类型 obj.auto = false, 1000; 选项卡是否自动播放,播放速度(毫秒) obj.creat(); 开始生成选项卡,需要onclick触发事件的话,可以obj.creat(函数名) 所有的都会触发 1 2 3 4 这个例子是用onclick触发的并设置overStyle = true;(over,out改变样式,但不激活) var bba = new opCard(); bba.bind = a2,li,b2,div; bba.style = style1,style2,style1; bba.overStyle = true; bba.creat(); bba = null; 33333 4444444 1 2 3 4 这个例子是比上面增加skip=true即<li skip=true>4</li>所以选项卡4是没有内容的 你可以为选项卡的文字直接加上链接,我这里就不加了 222222 33333 4444444 1 2 3 4 这个例子是用onmouseover触发的(over,out直接激活)并且<li skip=true>3</li>选项卡3不会被激活overStyle = true; var cc = new opCard(); cc.bind = a4,li,b4,div; cc.style = style1,style2,style1; cc.overStyle = true; cc.overChange = true; cc.creat(); cc = null; 33333 4444444 1 2 3 4 1111111我每3秒切换一个选项卡 var ee = new opCard(); ee.bind = a6,li,b6,div; ee.style = style1,style2,style1; ee.auto = true, 2000; ee.overChange = true; ee.creat(); ee = null; 33333我每3秒切换一个选项卡 4444444我每3秒切换一个选项卡 注:鼠标在选项卡任意位置都会使停止播放下面这个结合overChange一起 1 2 3 4 1111111我每2秒切换一个选项卡 var dd = new opCard(); dd.bind = a5,li,b5,div; dd.style = style1,style2,style1; dd.auto = true, 3000; dd.creat(); dd = null; 33333我每2秒切换一个选项卡 4444444我每2秒切换一个选项卡 下面这个再来个<li skip=true>3</li>,且overStyle=true; 1 2 3 4 1111111我每1秒切换一个选项卡 var ff = new opCard(); ff.bind = a7,li,b7,div; ff.style = style1,style2,style1; ff.auto = true, 1000; ff.overChange = true; ff.overStyle = true; ff.creat(); ff = null; 33333我每1秒切换一个选项卡 4444444我每1秒切换一个选项卡 首页 新闻 论坛 联系我们 国内新闻国际新闻娱乐新闻体育新闻 蓝色理想blue idea 注:菜单延时一秒关闭这里只是演示,实际可以设置下position什么的。-o-多级菜单不知道能不能支持,没试过 我见过的许多选项卡都不能用来嵌套但还是有些时候会用到的 所以如您所见,这个演示本身就是一个嵌套,效果还不错 比如图片切换什么,不过我太懒了,不写了。 这个能干什么,我也不知道。 新年好啊 快过年了 天好冷啊 大家去抢红包吧 红包!红包!你在哪里啊? 选项卡标题(或者菜单)必须和选项卡内容的数量相同,否则会出错即使选项卡菜单skip=true,内容也要放一个空的标签占位 其他好像暂时没发现什么 本来打算加入ajax的,但有些还没想好。 效率的话,应该还行,我这个演示放了几个选项卡,似乎还不错 写这个的目的就是以后弄选项卡只要处理样式就可以了,很多选项卡或者切换之类都是大同小异 本来是打算弄些特效在里面,考虑会增加不少代码,所以不加了,简洁点。 哦,还
展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 临时分类 > 人力资源


copyright@ 2023-2025  zhuangpeitu.com 装配图网版权所有   联系电话:18123376007

备案号:ICP2024067431-1 川公网安备51140202000466号


本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知装配图网,我们立即给予删除!