亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? coolmenus3.js

?? JAVA游戲大綜合及各種特效
?? JS
?? 第 1 頁 / 共 3 頁
字號:
/**************
Copyright (c) 2001 Thomas Brattli (www.dhtmlcentral.com)

eXperience DHTML coolMenus - Get it at  www.dhtmlcentral.com
Version 3.02
This script can be used freely as long as all copyright messages are
intact. 

(You can delete the comments below to save space)

This script takes over for the old Coolmenus2 and CoolFrameMenu

Visit www.dhtmlcentral.com/coolmenus/ 
for the latest version of the script.

Tutorial: http://www.dhtmlcentral.com/tutorial.asp

Support: http://www.dhtmlcentral.com/forums/forum.asp?FORUM_ID=2&CAT_ID=1&Forum_Title=CoolMenus

Known bugs:
Netscape 6: When using padding in the layers you can sometimes get
strange visual effects on the lowest menu item. Only way to fix is to not use padding. 

Opera: This menu is very close to working on Opera, but as far as I could 
figure out opera don't support innerHTML or document.createElement() which
makes the changing of the text inside the submenus immpossible. If anyone 
know a solution to this please let me know.

Explorer 4 for mac: It will not work in this browser, nothing does. 

Explorer 5 for mac: It works fine, but like Netscape 6 it's a little slow and you can get strange visual effects sometimes. 

Script checked and working with:
PC: 
Netscape 4.03 - Netscape 4.04 -Netscape 4.08 - Netscape 4.73 - Netscape 6 - Netscape 6.01
Internet Explorer 5.0 - Internet Explorer 5.5 -Internet Explorer 6.0
MAC:
Netscape 4 - Explorer 5

Btw: There is basically just one explanation to why this code is sort of "scrambled": I wanted this file be as small as possible..
If you want it to be smaller feel free to remove all comments (except for the copyright)
**************/

/*************
Pageobject
***************/
function makePageCoords(win,fr){
	if(!win) win=window
	this.x=0;this.x2=(bw.ns4 || bw.ns6)?win.innerWidth-1:win.document.body.offsetWidth;
	if(!fr&&bw.ie) this.x2-=20; else if(!fr&&bw.ns4) this.x2-=4; else if(bw.ns6) this.x2+=1
	this.y=0;this.y2=(bw.ns4 || bw.ns6)?win.innerHeight:win.document.body.offsetHeight;
	if(bw.ns4&&!win.rows) this.x2+=5; if(!fr&&bw.ie) this.y2-=4; else if(bw.ns4&&fr) this.y2+=4
	this.y2orig=this.y2; this.x50=this.x2/2; this.y50=this.y2/2; return this;
}
/*************
Debugging function
***************/
function debug(txt,ev){if(mDebugging==2) self.status=txt; else alert(txt); if(ev) eval(ev); return false}
/************
Scroll function
*************/
function cm_checkScrolled(obj){
	if(bw.ns4 || bw.ns6) obj.scrolledY=obj.win.pageYOffset
	else obj.scrolledY=obj.win.document.body.scrollTop
	if(obj.scrolledY!=obj.lastScrolled){
		if(!obj.useframes){
			for(i=0;i<obj.l[0].num;i++){var sobj=obj.l[0].o[i].oBorder; sobj.moveY(sobj.y+(obj.scrolledY-obj.lastScrolled))}
			if(obj.usebar) obj.oBar.moveY(obj.oBar.y+(obj.scrolledY-obj.lastScrolled))
		}
		obj.lastScrolled=obj.scrolledY; page.y=obj.scrolledY; page.y2=page.y2orig+obj.scrolledY
		if(!obj.useframes || bw.ie){ clearTimeout(obj.tim); obj.isover=0; obj.hideSubs(1,0)}
	}if((bw.ns4 || bw.ns6) && !obj.useframes) setTimeout("cm_checkScrolled("+obj.name+")",200)
}
/***********************
Checking if the values are % or not.
***************/
function cm_checkp(num,w,check,istop,ds){
	if(num){ var p=istop?toppage:page
		if(num.toString().indexOf("%")!=-1){if(w || (check && this.rows)) num=(p.x2*parseFloat(num)/100)
		else num=(p.y2*parseFloat(num)/100)
		}else num=eval(num)
	}else num=0; return num
}
/************
Making DIV objects + DIV objects code
*************/
function cm_makeObj(obj,name,level,win,nest,o){
	if(o&&(bw.ns4||bw.ns6)) this.evnt=o
	else this.evnt=bw.dom?win.document.getElementById(obj):bw.ie4?win.document.all[obj]:bw.ns4?nest?win.document[nest].document[obj]:win.document[obj]:0;
	if(!this.evnt) return debug('There seems to be an error with this layer:\nFrame: '+win+'\nLayer: '+nest + "." + obj)
  this.ref=bw.dom?document:this.evnt.document; this.css=bw.ns4?this.evnt:this.evnt.style
  this.w=this.evnt.offsetWidth||this.css.clip.width||this.ref.width||this.css.pixelWidth||0; 
  this.h=this.evnt.offsetHeight||this.css.clip.height||this.ref.height||this.css.pixelHeight||0
	this.css=bw.dom||bw.ie4?this.evnt.style:bw.ns4?this.evnt:0;	this.ref=bw.dom || bw.ie4?win.document:bw.ns4?this.css.document:0;
	this.hideIt=cm_hideIt; this.showIt=cm_showIt; this.writeIt=cm_writeIt; this.setactive=cm_setactive; this.addEvents=cm_addEvents; 
	this.moveIt=cm_moveIt; this.clipTo=cm_clipTo; if(name) this.parent=name; this.moveY=cm_moveY; this.l=level; this.clipOut=cm_clipOut; 
	this.filterIt=cm_filterIt; this.slide=cm_slide; this.obj = obj + "Object"; 	eval(this.obj + "=this"); this.tim=10; this.clipy=0; return this
}
function cm_writeIt(text){if(!this.img1){if(bw.ns4){this.ref.write(text);
this.ref.close()}else this.evnt.innerHTML=text}}; function cm_moveY(y){this.y=y; this.css.top=y}
function cm_moveIt(x,y){this.x=x; this.y=y; this.css.left=this.x;this.css.top=this.y}
function cm_showIt(){this.css.visibility="visible"; this.vis=1}; function cm_hideIt(){this.css.visibility="hidden"; this.vis=0}
function cm_clipOut(px,w,ystop,tim,name){
	if(!this.vis) return; if(this.clipy<ystop-px){this.clipy+=px; this.clipTo(0,w,this.clipy,0,1)
		this.tim=setTimeout(this.obj+".clipOut("+px+","+w+","+ystop+","+tim+",'"+name+"')",tim)
	}else{if(bw.ns6){this.hideIt();}; this.clipTo(0,w,ystop,0,1); if(bw.ns6){this.showIt()}}
}
function cm_slide(end,px,tim,w,h){
	if(!this.vis) return;
	if(this.y<end-px){
		if(this.y>(end-px*px-px) && px>1) px-=px/5; this.moveIt(this.x,this.y+px)
		this.clipTo(end-this.y,this.width,this.height,0)
		this.tim=setTimeout(this.obj+".slide("+end+","+px+","+tim+","+w+","+h+")",tim)
	}else{this.clipTo(0,this.width,this.height,0); this.moveIt(this.x,end)}
}
function cm_filterIt(f){if(this.evnt.filters[0]) this.evnt.filters[0].Stop(); else this.css.filter=f; this.evnt.filters[0].Apply(); this.showIt(); this.evnt.filters[0].Play();}
function cm_setactive(on,name,frmmouse){
	if(!name) name=this.name; var tobj=this.parent.m[name]
	if(tobj.img){if(tobj.img2){if(on) this.ref.images[tobj.img].src=tobj.img2; else this.ref.images[tobj.img].src=tobj.img1}
	}else{
		if(on){var color=tobj.c2; var fcolor=tobj.c4; var re=tobj.c3}else{var color=tobj.c1; var fcolor=tobj.c3; var re=tobj.c4}
		if(color){if(bw.dom || bw.ie4) this.css.backgroundColor=color; else if(bw.ns4) if(color=="transparent") color=null; this.css.bgColor=color}
		if(fcolor && !bw.ns4){if(bw.ie4) this.evnt.style.color=fcolor; else if(this.evnt.childNodes[0]) this.evnt.style.color=fcolor
		}else if(fcolor&&frmmouse){t=this.parent.m[name].text; t=t.replace(re,fcolor); this.writeIt(t); if(on) this.addEvents(name,this.parent.name,tobj.lnk,this.parent.useclick)}
		if(tobj.l==0&&bw.ns6){this.parent.l[0].o[tobj.num].oBorder.hideIt(); this.parent.l[0].o[tobj.num].oBorder.showIt();} //Stupid fix for netscape 6....
	}
}
function cm_clipTo(t,r,b,l,w){if(bw.ns4){this.css.clip.top=t;this.css.clip.right=r; this.css.clip.bottom=b;this.css.clip.left=l
}else{this.css.clip="rect("+t+","+r+","+b+","+l+")"; if(w){this.css.width=r; this.css.height=b}}; this.width=r; this.height=b}
function cm_addEvents(n,name,url,useclick){
	this.evnt.onmouseover=new Function(name+".mover('"+n+"')"); 
	this.evnt.onmouseout=new Function(name+".mmout('"+n+"')")
	if(!url && useclick) ev=new Function(name+".mover('"+n+"',1)")
	else ev=new Function(name+".go('"+n+"')")
	if(bw.ns4){this.ref.captureEvents(Event.MOUSEDOWN); this.ref.onmousedown=ev}
	else this.evnt.onclick=ev
}
/************
Making menu object
*************/
function cm_makeMenu(name,parent,text,link,target,width,height,img1,img2,bgcoloroff,bgcoloron,textcolor,hovercolor,onclick,onmouseover,onmouseout){
	this.m[name]=new Object(); var obj=this.m[name]; obj.name=name;	obj.subs=new Array(); obj.parent=parent; var tt
	obj.lnk=(link==0||link=='')?"":link; obj.target=target
	if(parent!="" && parent){this.m[parent].subs[this.m[parent].subs.length]=name; l=this.m[parent].l+1} else l=0
	obj.l=l; prop1=l<this.level.length?this.level[l]:this.level[this.level.length-1]; prop2=this.level[0]
	if(this.l.length<=l){
		this.l[l]=new Object(); this.l[l].num=0; if(l==0) this.l[l].names=new Array()
		this.l[l].slide=prop1["slide"]||prop2["slide"]||0;
		this.l[l].clip=prop1["clip"]||prop2["clip"]||0; this.l[l].clippx=prop1["clippx"]||prop2["clippx"]||0
		this.l[l].cliptim=prop1["cliptim"]||prop2["cliptim"]||0; this.l[l].filter=prop1["filter"]||prop2["filter"]||0
		this.l[l].border=prop1["border"]||prop2["border"]; this.l[l].maxnum=0
		this.l[l].bordercolor=prop1["bordercolor"]||prop2["bordercolor"];
		s=prop1["align"]||prop2["align"]; if(s=="left") s=1; else if(s=="right") s=0; 
		else if(s=="top") s=3; else if(s=="bottom") s=2; this.l[l].align=s; this.aobj[l]=-1;
		this.l[l].height=prop1["height"]||prop2["height"]; this.l[l].width=prop1["width"]||prop2["width"];
		this.l[l].style=prop1["style"]||prop2["style"]; this.l[l].tc=textcolor||prop1.textcolor||prop2.textcolor; 
		this.l[l].offsetX=String(prop1["offsetX"])!="undefined"?prop1["offsetX"]:prop2["offsetX"]
		this.l[l].offsetY=String(prop1["offsetY"])!="undefined"?prop1["offsetY"]:prop2["offsetY"]
	}if(l==0) this.l[l].names[this.l[l].names.length]=name
	if(parent!="" && parent){obj.num=this.m[parent].subs.length-1}else obj.num=this.l[l].num
	this.l[l].num++; prop=l<this.level.length?this.level[l]:this.level[this.level.length-1]
	obj.width=this.checkp(width?width:prop1.width?prop1.width:prop2.width,1,0,1);
	obj.height=this.checkp(height?height:prop1.height?prop1.height:prop2.height,0,0,1);
	if(parent!="" && parent){if(this.m[parent].subs.length>this.l[l].maxnum) this.l[l].maxnum=this.m[parent].subs.length 
		if(this.m[parent].totheight==0) this.m[parent].totheight=this.l[l].border
		this.m[parent].totheight+=obj.height+ this.l[l].border
		if(this.m[parent].maxwidth<obj.width) this.m[parent].maxwidth=obj.width+this.l[l].border*2
	}else{this.l[l].maxnum=this.l[l].names.length; this.totwidth+=obj.width; this.totheight+=obj.height
		this.maxwidth=this.maxwidth>obj.width?this.maxwidth:obj.width; this.maxheight=this.maxheight>obj.height?this.maxwidth:obj.height
	}if(img1) text='<img src="'+img1+'" border="0" name="imgCMenu'+name+'">'
	else if(bw.ns4){text='<font size="'+(prop1.NS4fontSize||prop2.NS4fontSize)+'" face="'+(prop1.NS4font||prop2.NS4font)+'" color="'+(textcolor||this.l[l].tc)+'">'+text+'</font>'}
	if(bw.ns4&&this.useNS4links&&(l==0||!this.useframes) ||(l==0&&img1)){tt=img1&&l==0?this.useclick?this.name+".mover('"+name+"',1);":this.name+".go('"+name+"');":"";text='<a href="#" onclick="'+tt+'return false" class="clNS4">'+text+'</a>'}
	if(img1){obj.preimg1=new Image(); obj.preimg1.src=img1}; if(img2){obj.preimg2=new Image(); obj.preimg2.src=img2}
	if(img2) obj.img="imgCMenu"+name; else obj.img=0; obj.img1=img1||""; obj.img2=img2||""; obj.text=text; obj.subx=-1;
	obj.c1=bgcoloroff||prop1.bgcoloroff||prop2.bgcoloroff; obj.c2=bgcoloron||prop1.bgcoloron||prop2.bgcoloron;
	obj.c3=textcolor||this.l[l].tc; obj.c4=hovercolor||prop1.hovercolor||prop2.hovercolor;  obj.suby=-1;
	obj.mclick=onclick||""; obj.mover=onmouseover||""; obj.mout=onmouseout||"";	obj.totheight=0; obj.maxwidth=0; 
}
/************
Onmouseout
*************/

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
高清不卡一区二区| 精品国产乱码久久久久久蜜臀| 538在线一区二区精品国产| 欧美精品一区二区久久婷婷| 亚洲综合色噜噜狠狠| 狠狠狠色丁香婷婷综合久久五月| 欧美自拍偷拍一区| 中文字幕va一区二区三区| 蜜臀久久99精品久久久久宅男| 色综合欧美在线| 国产欧美精品一区二区色综合| 日韩影院精彩在线| 欧美亚洲国产一卡| 中文字幕在线一区免费| 国产91富婆露脸刺激对白| 日韩欧美中文一区| 日韩av一级电影| 欧美日本一区二区三区四区| 玉足女爽爽91| 在线看日本不卡| 国产精品二三区| 成人动漫av在线| 国产精品毛片久久久久久久| 国产精品中文字幕欧美| 欧美成人免费网站| 美女在线视频一区| 精品精品欲导航| 免费成人在线视频观看| 日韩丝袜美女视频| 麻豆精品一区二区av白丝在线 | 一个色妞综合视频在线观看| www.99精品| 亚洲日本在线视频观看| 91麻豆视频网站| 亚洲理论在线观看| 欧美性大战久久久久久久蜜臀| 亚洲精品国产a久久久久久 | 欧美日本一区二区| 日韩电影免费在线看| 日韩欧美在线不卡| 国产一区二区日韩精品| 国产欧美综合色| 色综合久久中文字幕综合网| 一区二区三区在线免费观看| 日韩欧美一二三| 欧美成人性战久久| 亚洲欧美日韩国产综合| 日韩高清不卡在线| 色婷婷av一区二区| 午夜电影一区二区三区| 91精品免费在线观看| 韩国欧美国产1区| 久久久久国产免费免费| av午夜精品一区二区三区| 亚洲精品va在线观看| 7777精品伊人久久久大香线蕉 | 亚洲综合网站在线观看| 在线电影国产精品| 国产曰批免费观看久久久| 久久久国产综合精品女国产盗摄| 99re热视频精品| 日产国产欧美视频一区精品| 国产午夜久久久久| 欧美午夜一区二区| 精品一区二区三区在线视频| 国产精品毛片大码女人| 欧美日韩成人综合在线一区二区| 久久成人精品无人区| 日韩码欧中文字| 精品剧情v国产在线观看在线| 成人av在线播放网址| 天堂影院一区二区| 国产精品久久久久久久久免费樱桃| 欧美日韩一区三区四区| 岛国精品一区二区| 日本一道高清亚洲日美韩| 国产精品灌醉下药二区| 在线综合+亚洲+欧美中文字幕| 成人激情免费电影网址| 日韩黄色免费电影| 亚洲欧美视频在线观看| 久久蜜桃一区二区| 7777精品伊人久久久大香线蕉超级流畅 | 成人久久视频在线观看| 视频一区欧美精品| 亚洲视频一二三| 久久女同互慰一区二区三区| 欧美色图天堂网| www.欧美.com| 国产.欧美.日韩| 美女一区二区久久| 香蕉成人伊视频在线观看| 亚洲视频免费在线| 国产免费久久精品| 久久综合丝袜日本网| 日韩一区二区高清| 精品污污网站免费看| 91成人在线精品| 99久久er热在这里只有精品15 | 欧美综合视频在线观看| 99精品久久99久久久久| 成人禁用看黄a在线| 国内成人精品2018免费看| 日韩精品亚洲专区| 日韩vs国产vs欧美| 奇米777欧美一区二区| 婷婷久久综合九色综合伊人色| 玉米视频成人免费看| 亚洲精品国产成人久久av盗摄 | 久久成人免费网站| 久久激情综合网| 蜜臀av一级做a爰片久久| 免费人成黄页网站在线一区二区| 午夜在线电影亚洲一区| 视频一区在线播放| 老司机午夜精品| 韩国成人在线视频| 国产精品乡下勾搭老头1| 国产不卡免费视频| 成人性生交大片免费看视频在线 | 日本不卡的三区四区五区| 亚洲成精国产精品女| 日韩黄色小视频| 国产永久精品大片wwwapp| 国产精品一区二区在线观看网站| 懂色av一区二区三区免费观看 | 韩国成人精品a∨在线观看| 国产成人综合网| av一区二区不卡| 欧美私模裸体表演在线观看| 3atv一区二区三区| 欧美成人精品福利| 国产精品免费视频网站| 亚洲欧美日韩国产综合在线| 天涯成人国产亚洲精品一区av| 蜜臀国产一区二区三区在线播放| 国产一区二区不卡| 成人免费视频一区| 欧美午夜理伦三级在线观看| 91精品国产91综合久久蜜臀| 久久久久久久久99精品| 亚洲人成影院在线观看| 亚洲国产成人精品视频| 精品一二三四在线| 99国产精品视频免费观看| 欧美日韩亚洲丝袜制服| 久久亚洲精华国产精华液 | 久久久精品一品道一区| 在线观看亚洲精品| 欧美一区二区三区四区久久| 日韩亚洲欧美在线| 国产精品久久久久天堂| 日本中文在线一区| 国产91高潮流白浆在线麻豆 | 日韩视频123| 中文字幕在线不卡一区| 视频一区视频二区在线观看| 国产91综合网| 91精品国产一区二区三区蜜臀| 国产日韩欧美激情| 日韩av高清在线观看| 91丨九色丨尤物| 亚洲综合色视频| 欧美午夜电影一区| 精品少妇一区二区三区在线播放 | 亚洲国产精品精华液网站| 国产一区二区视频在线| 欧美午夜理伦三级在线观看| 国产欧美日韩中文久久| 日韩成人免费电影| 色素色在线综合| 欧美激情资源网| 久草中文综合在线| 91精品麻豆日日躁夜夜躁| 中文字幕综合网| 高清国产午夜精品久久久久久| 欧美一级夜夜爽| 视频一区视频二区在线观看| 色综合激情久久| 欧美高清一级片在线观看| 激情五月婷婷综合网| 宅男在线国产精品| 亚洲国产精品久久艾草纯爱 | 国产69精品一区二区亚洲孕妇| 日韩三级免费观看| 水蜜桃久久夜色精品一区的特点| 一本色道久久综合亚洲精品按摩| 国产午夜精品美女毛片视频| 久久99久久99| 日韩女优毛片在线| 日日摸夜夜添夜夜添精品视频| 色视频一区二区| 亚洲一区在线观看视频| 日本高清不卡aⅴ免费网站| 国产精品国产a| 91美女福利视频| 亚洲精品菠萝久久久久久久| 91成人国产精品| 亚洲一线二线三线视频| 色婷婷综合久色|