亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
国产欧美一区二区精品忘忧草| 色婷婷一区二区| 欧美成人性战久久| 激情久久五月天| 久久一留热品黄| 大尺度一区二区| 日韩一区欧美一区| 欧美日韩国产大片| 精品在线亚洲视频| 久久亚洲春色中文字幕久久久| 国产成人无遮挡在线视频| 欧美国产日韩在线观看| 91免费版在线| 日本人妖一区二区| 欧美国产国产综合| 欧美色区777第一页| 麻豆91小视频| 国产精品每日更新在线播放网址| 93久久精品日日躁夜夜躁欧美| 久久精品国产一区二区| 久久一日本道色综合| 色综合中文字幕| 久久精品国产亚洲一区二区三区 | 91免费看片在线观看| 亚洲成av人片在线| 久久综合给合久久狠狠狠97色69| 成人app网站| 日一区二区三区| 国产精品美女久久久久久久久久久 | 午夜久久久久久久久| 精品国产一区二区三区久久久蜜月| 福利一区二区在线观看| 亚洲免费视频中文字幕| 精品卡一卡二卡三卡四在线| 成人白浆超碰人人人人| 欧美a级理论片| 中文字幕一区二区三区四区不卡| 91精品国产一区二区三区蜜臀| 国产精品一区免费在线观看| 樱桃视频在线观看一区| 精品处破学生在线二十三| 色老汉av一区二区三区| 国产久卡久卡久卡久卡视频精品| 亚洲制服丝袜av| 国产日韩一级二级三级| 在线91免费看| 91视频一区二区| 国产成人午夜片在线观看高清观看| 亚洲午夜久久久久久久久久久| 久久久噜噜噜久久中文字幕色伊伊| 在线精品视频小说1| 国产91色综合久久免费分享| 日韩av午夜在线观看| 亚洲嫩草精品久久| 欧美极品xxx| 日韩欧美黄色影院| 欧美日韩国产在线播放网站| 国产成人av电影在线| 免费观看日韩电影| 亚洲成人中文在线| 亚洲欧美另类综合偷拍| 久久精品视频一区二区三区| 欧美一级生活片| 欧美精品vⅰdeose4hd| 一本到不卡免费一区二区| 成人免费不卡视频| 国产高清亚洲一区| 极品瑜伽女神91| 久久精品国产成人一区二区三区| 亚洲国产日韩一区二区| 亚洲综合一区二区三区| 亚洲人一二三区| 国产精品国产三级国产aⅴ入口| 国产三级精品视频| 久久久影院官网| 久久精品一区二区三区不卡牛牛| 欧美tk—视频vk| 久久这里只有精品首页| 久久精品综合网| 国产日韩精品一区二区三区| 久久久精品综合| 国产欧美精品一区aⅴ影院| 久久免费国产精品| 欧美极品少妇xxxxⅹ高跟鞋 | 国产精品污污网站在线观看| 国产日韩av一区| 国产精品无遮挡| 亚洲乱码一区二区三区在线观看| 亚洲欧美日韩在线| 有坂深雪av一区二区精品| 亚洲一区欧美一区| 日本不卡在线视频| 久久精品国产免费看久久精品| 韩国v欧美v日本v亚洲v| 国产黄色精品网站| 91网站在线播放| 欧美日韩一区小说| 日韩一区二区三区四区| 久久久精品天堂| 亚洲欧洲无码一区二区三区| 一区二区三区免费网站| 午夜精品福利一区二区蜜股av| 日本欧洲一区二区| 国产精品一级片| 色综合色综合色综合色综合色综合| 欧美性猛交xxxxxx富婆| 欧美一级免费观看| 亚洲国产精品成人久久综合一区| 亚洲综合自拍偷拍| 奇米888四色在线精品| 国产98色在线|日韩| 欧美在线观看视频一区二区三区 | 久久国产夜色精品鲁鲁99| 高清久久久久久| 欧美三级韩国三级日本三斤| 精品久久一区二区三区| 一色桃子久久精品亚洲| 青草国产精品久久久久久| 懂色av一区二区三区蜜臀| 欧美在线999| 久久久精品综合| 午夜亚洲国产au精品一区二区| 国产一区在线精品| 色婷婷综合久久久久中文一区二区| 欧美日韩国产色站一区二区三区| 久久男人中文字幕资源站| 亚洲综合在线电影| 懂色av一区二区三区蜜臀| 欧美精品777| 日韩一区在线看| 久久精品国产久精国产| 欧美三级电影一区| 国产精品精品国产色婷婷| 奇米精品一区二区三区在线观看一| www.一区二区| 亚洲精品一区二区三区香蕉| 一区二区三区日韩精品视频| 国产精品中文字幕一区二区三区| 欧美在线|欧美| 国产精品国产自产拍高清av王其| 久久精品免费观看| 在线观看欧美日本| 国产精品久久久久永久免费观看 | 精品一区二区免费| 欧美日韩成人在线一区| 一区二区中文视频| 岛国一区二区三区| 国产亚洲一本大道中文在线| 水野朝阳av一区二区三区| 99精品国产热久久91蜜凸| 欧美国产综合一区二区| 国产在线一区观看| 91精选在线观看| 午夜精品福利一区二区三区av | 风间由美性色一区二区三区| 精品久久久久久无| 日韩1区2区日韩1区2区| 欧美三级韩国三级日本一级| 一区二区日韩电影| 91网站在线播放| 亚洲视频综合在线| 欧美乱妇20p| 日韩国产精品91| 欧美一区二区三区在线视频| 午夜久久久久久久久| 欧美午夜视频网站| 亚洲亚洲人成综合网络| 日本电影亚洲天堂一区| 亚洲欧美日韩电影| 在线看国产日韩| 午夜一区二区三区视频| 欧美日韩一区高清| 天天综合天天综合色| 欧美一区二区视频观看视频| 日本不卡中文字幕| 精品国产乱码久久久久久牛牛 | 日日夜夜免费精品| 91精品综合久久久久久| 久久se精品一区二区| 26uuu国产电影一区二区| 极品少妇xxxx精品少妇偷拍| 精品免费国产一区二区三区四区| 精品在线免费观看| 久久久国产精品麻豆| 成人97人人超碰人人99| 亚洲色图在线视频| 欧美日韩高清一区二区三区| 日韩精品国产精品| 久久人人超碰精品| 91天堂素人约啪| 一片黄亚洲嫩模| 欧美一区二区三区视频在线观看| 九九国产精品视频| 国产日韩欧美精品综合| 色婷婷久久久综合中文字幕 | 国内精品不卡在线| 国产精品久久久久久久久免费丝袜 | 精品一区二区三区免费观看| 欧美国产一区二区| 在线观看日产精品|