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

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

?? coreclasses.js

?? 在流覽器上仿CS界面的JAVASCRIPT腳本
?? JS
?? 第 1 頁 / 共 5 頁
字號:
/* * Bindows 1.10 * http://www.bindows.net/ * Copyright (c) 2003-2004 MB Technologies * * Bindows(tm) belongs to MB Technologies (Georgia, USA). All rights reserved. * You are not allowed to copy or modify this code. Commercial use requires * license. */function BiBorder(nWidth,sStyle,sColor)
{BiObject.call(this);this._props={};this._set("border",(nWidth!=null?nWidth+"px ":"")+(sStyle?sStyle+" ":"")+(sColor?sColor:""));this._leftWidth=this._rightWidth=this._topWidth=this._bottomWidth=nWidth;this._leftStyle=this._rightStyle=this._topStyle=this._bottomStyle=sStyle;this._leftColor=this._rightColor=this._topColor=this._bottomColor=sColor;if(BiBrowserCheck.moz)
{this._mozSyncLeftColors();this._mozSyncRightColors();this._mozSyncTopColors();this._mozSyncBottomColors();}}
_p=BiBorder.prototype=new BiObject;_p._className="BiBorder";BiBorder.prototype.getLeftWidth=function(){return this._leftWidth;};BiBorder.prototype.getLeftStyle=function(){return this._leftStyle;};BiBorder.prototype.getLeftColor=function(){return this._leftColor;};BiBorder.prototype.getRightWidth=function(){return this._rightWidth;};BiBorder.prototype.getRightStyle=function(){return this._rightStyle;};BiBorder.prototype.getRightColor=function(){return this._rightColor;};BiBorder.prototype.getTopWidth=function(){return this._topWidth;};BiBorder.prototype.getTopStyle=function(){return this._topStyle;};BiBorder.prototype.getTopColor=function(){return this._topColor;};BiBorder.prototype.getBottomWidth=function(){return this._bottomWidth;};BiBorder.prototype.setBottomWidth=function(v){this._bottomWidth=v;};BiBorder.prototype.getBottomStyle=function(){return this._bottomStyle;};BiBorder.prototype.setBottomStyle=function(v){this._bottomStyle=v;};BiBorder.prototype.getBottomColor=function(){return this._bottomColor;};BiBorder.prototype.setBottomColor=function(v){this._bottomColor=v;};_p.setLeft=function(nWidth,sStyle,sColor)
{this._set("borderLeft",(nWidth!=null?nWidth+"px ":"")+(sStyle?sStyle+" ":"")+(sColor?sColor:""));this._leftWidth=nWidth;this._leftStyle=sStyle;this._leftColor=sColor;if(BiBrowserCheck.moz)
this._mozSyncLeftColors();};_p.setRight=function(nWidth,sStyle,sColor)
{this._set("borderRight",(nWidth!=null?nWidth+"px ":"")+(sStyle?sStyle+" ":"")+(sColor?sColor:""));this._rightWidth=nWidth;this._rightStyle=sStyle;this._rightColor=sColor;if(BiBrowserCheck.moz)
this._mozSyncRightColors();};_p.setTop=function(nWidth,sStyle,sColor)
{this._set("borderTop",(nWidth!=null?nWidth+"px ":"")+(sStyle?sStyle+" ":"")+(sColor?sColor:""));this._topWidth=nWidth;this._topStyle=sStyle;this._topColor=sColor;if(BiBrowserCheck.moz)
this._mozSyncTopColors();};_p.setBottom=function(nWidth,sStyle,sColor)
{this._set("borderBottom",(nWidth!=null?nWidth+"px ":"")+(sStyle?sStyle+" ":"")+(sColor?sColor:""));this._bottomWidth=nWidth;this._bottomStyle=sStyle;this._bottomColor=sColor;if(BiBrowserCheck.moz)
this._mozSyncBottomColors();};_p.setWidth=function(nWidth){this._set("borderWidth",nWidth+"px");this._leftWidth=this._rightWidth=this._topWidth=this._bottomWidth=nWidth;};_p.setStyle=function(sStyle){this._set("borderStyle",sStyle);this._leftStyle=this._rightStyle=this._topStyle=this._bottomStyle=sStyle;if(BiBrowserCheck.moz)
{this._mozSyncLeftColors();this._mozSyncRightColors();this._mozSyncTopColors();this._mozSyncBottomColors();}};_p.setColor=function(sColor){this._set("borderColor",sColor);this._leftColor=this._rightColor=this._topColor=this._bottomColor=sColor;if(BiBrowserCheck.moz)
{this._mozSyncLeftColors();this._mozSyncRightColors();this._mozSyncTopColors();this._mozSyncBottomColors();}};_p.setLeftWidth=function(nWidth){this.setLeft(nWidth,this._leftStyle,this._leftColor);};_p.setRightWidth=function(nWidth){this.setRight(nWidth,this._rightStyle,this._rightColor);};_p.setTopWidth=function(nWidth){this.setTop(nWidth,this._topStyle,this._topColor);};_p.setBottomWidth=function(nWidth){this.setBottom(nWidth,this._bottomStyle,this._bottomColor);};_p.setLeftStyle=function(sStyle)
{this.setLeft(this._leftWidth,sStyle,this._leftColor);if(BiBrowserCheck.moz)
this._mozSyncLeftColors();};_p.setRightStyle=function(sStyle)
{this.setRight(this._rightWidth,sStyle,this._rightColor);if(BiBrowserCheck.moz)
this._mozSyncRightColors();};_p.setTopStyle=function(sStyle)
{this.setTop(this._topWidth,sStyle,this._topColor);if(BiBrowserCheck.moz)
this._mozSyncTopColors();};_p.setBottomStyle=function(sStyle)
{this.setBottom(this._bottomWidth,sStyle,this._bottomColor);if(BiBrowserCheck.moz)
this._mozSyncBottomColors();};_p.setLeftColor=function(sColor)
{this.setLeft(this._leftWidth,this._leftStyle,sColor);if(BiBrowserCheck.moz)
this._mozSyncLeftColors();};_p.setRightColor=function(sColor)
{this.setRight(this._rightWidth,this._rightStyle,sColor);if(BiBrowserCheck.moz)
this._mozSyncRightColors();};_p.setTopColor=function(sColor)
{this.setTop(this._topWidth,this._topStyle,sColor);if(BiBrowserCheck.moz)
this._mozSyncTopColors();};_p.setBottomColor=function(sColor)
{this.setBottom(this._bottomWidth,this._bottomStyle,sColor);if(BiBrowserCheck.moz)
this._mozSyncBottomColors();};_p._setLeftColors=function(sColors){this._set("MozBorderLeftColors",sColors);};_p._setRightColors=function(sColors){this._set("MozBorderRightColors",sColors);};_p._setTopColors=function(sColors){this._set("MozBorderTopColors",sColors);};_p._setBottomColors=function(sColors){this._set("MozBorderBottomColors",sColors);};_p.paintBorder=function(oComponent){for(var p in this._props){oComponent.setStyleProperty(p,this._props[p]);}};_p.removeBorder=function(oComponent){for(var p in this._props){oComponent.removeStyleProperty(p);}};_p._set=function(sName,sValue){if(sValue==""||sValue==null)
delete this._props[sName];else this._props[sName]=sValue;};_p._mozSyncLeftColors=function()
{if(this._leftColor)
this._setLeftColors("");else {switch(this._leftStyle)
{case"groove":this._setLeftColors("ThreeDShadow ThreeDHighlight");break;case"ridge":this._setLeftColors("ThreeDHighlight ThreeDShadow");break;case"inset":this._setLeftColors("ThreeDShadow ThreeDDarkShadow");break;case"outset":this._setLeftColors("ThreeDLightShadow ThreeDHighlight");break;default:this._setLeftColors("");}}};_p._mozSyncRightColors=function()
{if(this._rightColor)
this._setRightColors("");else {switch(this._rightStyle)
{case"groove":this._setRightColors("ThreeDHighlight ThreeDShadow");break;case"ridge":this._setRightColors("ThreeDShadow ThreeDHighlight");break;case"inset":this._setRightColors("ThreeDHighlight ThreeDLightShadow");break;case"outset":this._setRightColors("ThreeDDarkShadow ThreeDShadow");break;default:this._setRightColors("");}}};_p._mozSyncTopColors=function()
{if(this._topColor)
this._setTopColors("");else {switch(this._topStyle)
{case"groove":this._setTopColors("ThreeDShadow ThreeDHighlight");break;case"ridge":this._setTopColors("ThreeDHighlight ThreeDShadow");break;case"inset":this._setTopColors("ThreeDShadow ThreeDDarkShadow");break;case"outset":this._setTopColors("ThreeDLightShadow ThreeDHighlight");break;default:this._setTopColors("");}}};_p._mozSyncBottomColors=function()
{if(this._bottomColor)
this._setBottomColors("");else {switch(this._bottomStyle)
{case"groove":this._setBottomColors("ThreeDHighlight ThreeDShadow");break;case"ridge":this._setBottomColors("ThreeDShadow ThreeDHighlight");break;case"inset":this._setBottomColors("ThreeDHighlight ThreeDLightShadow");break;case"outset":this._setBottomColors("ThreeDDarkShadow ThreeDShadow");break;default:this._setBottomColors("");}}};BiBorder.THIN_INSET_BORDER=new BiBorder(1,"solid","ThreeDShadow");BiBorder.THIN_INSET_BORDER.setRightColor("ThreeDHighlight");BiBorder.THIN_INSET_BORDER.setBottomColor("ThreeDHighlight");BiBorder.THIN_OUTSET_BORDER=new BiBorder(1,"solid","ThreeDShadow");BiBorder.THIN_OUTSET_BORDER.setLeftColor("ThreeDHighlight");BiBorder.THIN_OUTSET_BORDER.setTopColor("ThreeDHighlight");BiBorder.INSET_BORDER=new BiBorder(2,"inset");BiBorder.OUTSET_BORDER=new BiBorder(2,"outset");BiBorder.GROOVE_BORDER=new BiBorder(2,"groove");BiBorder.RIDGE_BORDER=new BiBorder(2,"ridge");BiBorder.fromString=function(s)
{var b=new BiBorder;var parts=s.split(/\s+/);for(var i=0;i<parts.length;i++)
{part=parts[i];switch(part)
{case"groove":case"ridge":case"inset":case"outset":case"solid":case"dotted":case"dashed":case"double":case"none":b.setStyle(part);break;default:var n=parseFloat(part);if(n==part||part.indexOf("px")!= -1)
b.setWidth(n);else b.setColor(part);break;}}
return b;};function BiComponent(sName){BiEventTarget.call(this);if(sName)this._name=sName;this._children=[];this._style={};this._htmlProperties={id:"bi-component-"+ ++BiComponent._componentCount,className:"bi-component",unselectable:"on"};this._htmlAttributes={};}
var _p=BiComponent.prototype=new BiEventTarget;BiComponent._componentCount=0;BiComponent.__oninlineevent=function(e){return this._biComponent._oninlineevent(e);};_p._className="BiComponent";_p._parent=null;_p._name="";_p._enabled=true;_p._capture=false;_p._canSelect=false;_p._focused=false;_p._created=false;_p._tabIndex= -1;_p._hideFocus=false;_p._tagName="DIV";_p._toolTip=null;_p._toolTipText=null;_p._opacity=1;_p._visible=true;_p._left=null;_p._right=null;_p._top=null;_p._bottom=null;_p._width=null;_p._height=null;_p._measuredWidth=null;_p._measuredHeight=null;_p._minimumWidth=0;_p._maximumWidth=Infinity;_p._minimumHeight=0;_p._maximumHeight=Infinity;_p._acceptsEnter=false;_p._acceptsEsc=false;_p._focusManager=null;_p._lazyCreate=false;_p.add=function(oChild,oBefore,bAnonymous)
{var p=oChild._parent;if(oBefore==null){if(p!=null)
p.remove(oChild);this._children.push(oChild);}
else{if(oBefore._parent!=this)
throw new Error("Can only add components before siblings");if(p!=null)
p.remove(oChild);this._children.insertBefore(oChild,oBefore);}
oChild._anonymous=Boolean(bAnonymous);oChild._parent=this;if(this._created)
oChild._addHtmlElementToParent(this,oBefore);};_p.remove=function(oChild){if(oChild._parent!=this)
throw new Error("Can only remove children");this._children.remove(oChild);oChild._parent=null;oChild._anonymous=false;if(this._created)
this._removeHtmlElement(oChild);return oChild;};_p.removeAll=function()
{var cs=this.getChildren();var l=cs.length;for(var i=0;i<l;i++)
{this.remove(cs[i]);cs[i].dispose();}};_p.getParent=function()
{if(this._parent==null||!this._parent._anonymous)
return this._parent;return this._parent.getParent();};_p.getChildren=function()
{var res=[];var cs=this._children;var l=cs.length;for(var i=0;i<l;i++)
{if(!cs[i]._anonymous)
res.push(cs[i]);}
return res;};_p.hasChildren=function(){var cs=this._children;var l=cs.length;for(var i=0;i<l;i++)
{if(!cs[i]._anonymous)
return true;}
return false;};_p.getTopLevelComponent=function(){if(this._parent==null)return null;return this._parent.getTopLevelComponent();};_p.contains=function(oDescendant){if(oDescendant==null)return false;if(oDescendant==this)return true;var p=oDescendant._parent;return this.contains(p);};_p.getFirstChild=function()
{var cs=this._children;var l=cs.length;for(var i=0;i<l;i++)
{if(!cs[i]._anonymous)
return cs[i];}
return null;};_p.getLastChild=function()
{var cs=this._children;var l=cs.length;for(var i=l-1;i>=0;i--)
{if(!cs[i]._anonymous)
return cs[i];}
return null;};_p.getPreviousSibling=function(){var p=this._parent;if(p==null)return null;var cs=p._children;for(var i=cs.indexOf(this)-1;i>=0;i--)
{if(!cs[i]._anonymous)
return cs[i];}
return null;};_p.getNextSibling=function()
{var p=this._parent;if(p==null)return null;var cs=p._children;var l=cs.length;for(var i=cs.indexOf(this)+1;i<l;i++)
{if(!cs[i]._anonymous)
return cs[i];}
return null;};_p.setCssClassName=function(s){this.setHtmlProperty("className",s);};_p.getCssClassName=function(){return this.getHtmlProperty("className");};_p.setStyleProperty=function(sProp,sValue)
{this._style[sProp]=sValue;if(this._created)
this._element.style[sProp]=sValue;};_p.getStyleProperty=function(sProp){if(this._created)
{if(BiBrowserCheck.ie)
return this._element.currentStyle[sProp];else return this._document.defaultView.getComputedStyle(this._element,"")[sProp];}
else return this._style[sProp];};_p.removeStyleProperty=function(sProp){delete this._style[sProp];if(this._created)
this._element.style[sProp]="";};_p.getHtmlProperty=function(sProp){return this._htmlProperties[sProp];};_p.setHtmlProperty=function(sProp,sValue)
{this._htmlProperties[sProp]=sValue;if(this._created)
this._element[sProp]=sValue;};_p.removeHtmlProperty=function(sProp){delete this._htmlProperties[sProp];if(this._created)
{if(BiBrowserCheck.ie)
this._element.removeAttribute(sProp);else delete this._element[sProp];}};_p._getHtmlAttribute=function(sName){if(this._created)
return this._element.getAttribute(sName);else return this._htmlAttributes[sName];};_p._setHtmlAttribute=function(sName,sValue)
{this._htmlAttributes[sName]=sValue;if(this._created)
this._element.setAttribute(sName,sValue);};_p._removeHtmlAttribute=function(sName){delete this._htmlAttributes[sName];if(this._created)
this._element.removeAttribute(sName);};_p.setForeColor=function(sForeColor){this.setStyleProperty("color",sForeColor);};_p.getForeColor=function(){return this.getStyleProperty("color");};_p.setBackColor=function(sBackColor){this.setStyleProperty("backgroundColor",sBackColor);};_p.getBackColor=function(){return this.getStyleProperty("backgroundColor");};_p.setZIndex=function(nZIndex)
{this.setStyleProperty("zIndex",nZIndex);};_p.getZIndex=function()
{if(BiBrowserCheck.moz&&this._created)
return Number(this._element.style.zIndex);else return Number(this.getStyleProperty("zIndex"));};_p.setVisible=function(bVisible){this._visible=bVisible;this.setStyleProperty("visibility",bVisible?"inherit":"hidden");if(this._lazyCreate&&!this.getCreated()&&bVisible)
{var p=this.getParent();if(p&&p.getCreated())
{this._addHtmlElementToParent(p,this.getNextSibling(),true);}}};_p.getVisible=function(){return this.getStyleProperty("visibility")!="hidden";};_p.getIsVisible=function(){if(!this.getVisible())return false;var p=this._parent;return p!=null&&p.getIsVisible();};_p.getShowing=function(){throw new Error("BiComponent getShowing is depreciated. Use getIsVisible instead");};_p.setCursor=function(sCursor){this.setStyleProperty("cursor",sCursor=="pointer"&&BiBrowserCheck.ie55?"hand":sCursor);};_p.getCursor=function(){var c=this.getStyleProperty("cursor");return c=="hand"?"pointer":c;};_p.setBackgroundImage=function(sUri){sUri=String(sUri);if(sUri==""||sUri=="null")

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品国产一区二区三区不卡| 欧美老肥妇做.爰bbww视频| 国产91精品露脸国语对白| 日韩一级精品视频在线观看| 亚洲大片精品永久免费| 欧洲av一区二区嗯嗯嗯啊| 国产一区二区三区在线观看精品| 另类小说综合欧美亚洲| 六月丁香综合在线视频| 91精品欧美久久久久久动漫| 三级一区在线视频先锋| 在线播放视频一区| 奇米影视一区二区三区| 日韩欧美黄色影院| 国内精品伊人久久久久av一坑| 欧美v日韩v国产v| 国产在线播精品第三| 久久午夜羞羞影院免费观看| 丁香网亚洲国际| 中文字幕在线不卡| 99视频一区二区| 亚洲国产一区视频| 日韩视频一区在线观看| 首页国产欧美日韩丝袜| 337p日本欧洲亚洲大胆精品 | 精品裸体舞一区二区三区| 欧美日韩一区高清| 欧美日韩一级视频| 成人国产免费视频| 欧美人xxxx| 中文字幕在线播放不卡一区| av亚洲精华国产精华| 亚洲女同ⅹxx女同tv| 欧美无砖专区一中文字| 麻豆精品视频在线| 国产精品蜜臀在线观看| 欧美日韩国产另类一区| 国产麻豆91精品| 日韩成人午夜电影| 国产片一区二区| 色菇凉天天综合网| 国产一区在线观看视频| 亚洲激情中文1区| 久久综合999| 欧美在线一二三| 国产一区二区三区免费| 日韩理论片中文av| 91麻豆精品国产91久久久久久| 欧美经典一区二区| 99re成人精品视频| 日本不卡高清视频| 国产欧美日韩综合| 欧美人体做爰大胆视频| 粉嫩蜜臀av国产精品网站| 亚洲成人综合在线| 国产欧美精品一区| 欧美日本韩国一区二区三区视频| 国产成人福利片| 亚洲大片精品永久免费| 国产精品不卡在线| 91精品国产综合久久精品| 成人av免费在线播放| 麻豆精品视频在线观看视频| 亚洲美女一区二区三区| www一区二区| 欧美男女性生活在线直播观看| 国产成人精品三级| 91日韩一区二区三区| 国产成人免费高清| 国产乱码精品一区二区三区av| 久久福利资源站| 欧美精品xxxxbbbb| 99久久久免费精品国产一区二区| 尤物在线观看一区| 91久久精品一区二区三| 五月婷婷色综合| 亚洲国产精品影院| 一区二区三区日韩精品视频| 亚洲日本在线天堂| 一区二区久久久久久| 亚洲gay无套男同| 五月婷婷激情综合| 蜜桃视频免费观看一区| 九九视频精品免费| 国产馆精品极品| 成+人+亚洲+综合天堂| av电影在线观看不卡| 一本大道久久精品懂色aⅴ| 91福利国产成人精品照片| 欧美色欧美亚洲另类二区| 欧美二区在线观看| 日韩精品一区二| 中文字幕乱码久久午夜不卡 | 免费高清在线一区| 中文字幕一区二区三区视频| 视频一区在线视频| 日韩美女精品在线| 亚洲午夜视频在线观看| 日韩黄色免费电影| 国产剧情一区二区| 欧美一区二区三区成人| 欧美刺激午夜性久久久久久久| 精品国产91乱码一区二区三区 | 舔着乳尖日韩一区| 狠狠色狠狠色综合日日91app| 国产电影精品久久禁18| 一本一道久久a久久精品| 欧美喷水一区二区| 国产视频在线观看一区二区三区| 国产精品国产三级国产普通话三级 | 欧美精品成人一区二区三区四区| 日韩美女视频在线| 色老汉一区二区三区| 欧美一区二区福利在线| 中文字幕欧美日本乱码一线二线| 亚洲精品乱码久久久久| 男女激情视频一区| 99re热这里只有精品视频| 7777精品伊人久久久大香线蕉完整版 | 久久er99精品| 99热国产精品| 亚洲啪啪综合av一区二区三区| 日韩中文字幕1| 99久精品国产| 亚洲精品一区二区在线观看| 亚洲欧美日韩系列| 国产一区二区h| 欧美丰满美乳xxx高潮www| 国产精品久久免费看| 亚洲色图视频网站| 1000精品久久久久久久久| 亚洲激情欧美激情| 国产激情一区二区三区四区| 欧美日韩三级一区二区| 最近日韩中文字幕| 国产一区在线看| 91精品国产免费| 一二三区精品福利视频| 国产成人精品1024| 日韩无一区二区| 亚洲不卡一区二区三区| 一本一本大道香蕉久在线精品| 久久亚洲私人国产精品va媚药| 午夜久久久影院| 日本高清不卡aⅴ免费网站| 中文字幕免费观看一区| 精品写真视频在线观看| 91精品中文字幕一区二区三区| 中文字幕在线播放不卡一区| 国产剧情一区二区| ww亚洲ww在线观看国产| 久久国产三级精品| 欧美一级艳片视频免费观看| 午夜精品爽啪视频| 欧美日韩一二三| 成熟亚洲日本毛茸茸凸凹| 精品久久久久香蕉网| 美国av一区二区| 久久电影网电视剧免费观看| 欧美电视剧在线看免费| 国产精品白丝av| 中文字幕国产一区二区| 日韩欧美国产综合一区| 亚洲成人av在线电影| 91成人网在线| 亚洲精品菠萝久久久久久久| 一本到三区不卡视频| 亚洲影院在线观看| 欧美三级蜜桃2在线观看| 午夜精品福利一区二区三区蜜桃| 欧美性感一类影片在线播放| 亚洲国产精品久久不卡毛片 | 久久精品国产免费| 欧美一二三四在线| 精品制服美女丁香| 久久亚洲精品小早川怜子| 国产乱码精品一区二区三区五月婷| 久久精品亚洲精品国产欧美 | 99热国产精品| 亚洲一区二区精品3399| 久久99精品国产91久久来源| 日本不卡一二三| 日韩精品91亚洲二区在线观看| 欧美一区二区日韩一区二区| 久久av资源网| 国产精品系列在线| 91年精品国产| 亚洲国产人成综合网站| 日韩视频国产视频| 成人深夜福利app| 亚洲一区精品在线| 日韩欧美一级二级三级| 国产黄人亚洲片| 一区二区三区91| 日韩女优制服丝袜电影| 国产91精品在线观看| 亚洲在线免费播放| 日韩欧美精品在线视频| 成人黄页毛片网站| 午夜精品久久久久|