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

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

?? coreclasses.js

?? 在流覽器上仿CS界面的JAVASCRIPT腳本
?? JS
?? 第 1 頁 / 共 5 頁
字號:
if(!cs[i].isFocusRoot())
this._getAllAfter(cs[i],oComp,oArray);}};_p._getAllBefore=function(oCont,oComp,oArray){var cs=oCont.getChildren();var l=cs.length;for(var i=0;i<l;i++){if(!(cs[i]instanceof BiComponent))
continue;if(cs[i].getCanFocus()&&cs[i].getTabIndex()>0&&this.compareTabOrder(oComp,cs[i])>0){oArray.push(cs[i]);}
if(!cs[i].isFocusRoot())
this._getAllBefore(cs[i],oComp,oArray);}};_p._getFirst=function(oCont,oFirst){var cs=oCont.getChildren();var l=cs.length;for(var i=0;i<l;i++){if(!(cs[i]instanceof BiComponent))
continue;if(cs[i].getCanFocus()&&cs[i].getTabIndex()>0){if(oFirst==null||this.compareTabOrder(cs[i],oFirst)<0)
oFirst=cs[i];}
if(!cs[i].isFocusRoot())
oFirst=this._getFirst(cs[i],oFirst);}
return oFirst;};_p._getLast=function(oCont,oLast){var cs=oCont.getChildren();var l=cs.length;for(var i=0;i<l;i++){if(!(cs[i]instanceof BiComponent))
continue;if(cs[i].getCanFocus()&&cs[i].getTabIndex()>0){if(oLast==null||this.compareTabOrder(cs[i],oLast)>0)
oLast=cs[i];}
if(!cs[i].isFocusRoot())
oLast=this._getLast(cs[i],oLast);}
return oLast;};function BiFont(nSize,sName){BiObject.call(this);if(nSize!=null)this._size=nSize;if(sName!=null)this._name=sName;}
var _p=BiFont.prototype=new BiObject;_p._className="BiFont";BiFont.prototype.getSize=function(){return this._size;};BiFont.prototype.setSize=function(v){this._size=v;};BiFont.prototype.getBold=function(){return this._bold;};BiFont.prototype.setBold=function(v){this._bold=v;};BiFont.prototype.getItalic=function(){return this._italic;};BiFont.prototype.setItalic=function(v){this._italic=v;};BiFont.prototype.getUnderline=function(){return this._underline;};BiFont.prototype.setUnderline=function(v){this._underline=v;};BiFont.prototype.getStrikeout=function(){return this._strikeout;};BiFont.prototype.setStrikeout=function(v){this._strikeout=v;};BiFont.prototype.getName=function(){return this._name;};BiFont.prototype.setName=function(v){this._name=v;};_p.paintFont=function(oComponent)
{if(this._name)
oComponent.setStyleProperty("fontFamily",this._name);if(this._size!=null)
oComponent.setStyleProperty("fontSize",this._size+"px");if(this._bold!=null)
oComponent.setStyleProperty("fontWeight",this._bold?"bold":"normal");if(this._italic!=null)
oComponent.setStyleProperty("fontStyle",this._italic?"italic":"normal");var td=null;if(this._underline==false&&this._strikeout==false)
td="none";else if(this._underline!=null||this._strikeout!=null)
{td=(this._underline?"underline":"")+(this._strikeout?" line-through":"");}
if(td!=null)
oComponent.setStyleProperty("textDecoration",td);};_p.removeFont=function(oComponent){oComponent.removeStyleProperty("fontFamily");oComponent.removeStyleProperty("fontSize");oComponent.removeStyleProperty("fontWeight");oComponent.removeStyleProperty("fontStyle");oComponent.removeStyleProperty("textDecoration");};BiFont.fromString=function(s)
{var f=new BiFont;var parts=s.split(/\s+/);var nameSb=[];var part;for(var i=0;i<parts.length;i++)
{part=parts[i];switch(part)
{case"bold":f.setBold(true);break;case"italic":f.setItalic(true);break;case"underline":f.setUnderline(true);break;case"strikeout":f.setStrikeout(true);break;default:var n=parseFloat(part);if(n==part||part.indexOf("px")!= -1)
f.setSize(n);else nameSb.push(part);break;}}
if(nameSb.length>0)
f.setName(nameSb.join(" "));return f;};function BiImagePreloaderManager(){if(BiImagePreloaderManager._singleton)
return BiImagePreloaderManager._singleton;BiObject.call(this);this._imagePreloaders={};BiImagePreloaderManager._singleton=this;application.addEventListener("dispose",this.dispose,this);}
_p=BiImagePreloaderManager.prototype=new BiObject;_p._className="BiImagePreloaderManager";_p.getPreloader=function(oUri){return this._imagePreloaders[String(oUri)];};_p.addPreloader=function(oImagePreloader){this._imagePreloaders[String(oImagePreloader._uri)]=oImagePreloader;};_p.hasPreloader=function(oUri){return this._imagePreloaders[String(oUri)]!=null;};_p.dispose=function(){if(this._disposed)return;application.removeEventListener("dispose",this.dispose,this);for(var uri in this._imagePreloaders)
{this._imagePreloaders[uri].dispose();delete this._imagePreloaders[uri];}
BiImagePreloaderManager._singleton=null;};function BiImagePreloader(oUri){var man=new BiImagePreloaderManager();var sUri=String(oUri);if(man.hasPreloader(sUri))
return man.getPreloader(sUri);BiEventTarget.call(this);this._uri=oUri;this._jsImage=new Image();this._jsImage._biImagePreloader=this;this._jsImage.onload=BiImagePreloader.__onload;this._jsImage.onerror=BiImagePreloader.__onerror;if(this._uri)
this._jsImage.src=sUri;man.addPreloader(this);}
_p=BiImagePreloader.prototype=new BiEventTarget;_p._className="BiImagePreloader";_p._loaded=false;BiImagePreloader.__onload=function(){this._biImagePreloader._onload();};BiImagePreloader.__onerror=function(){this._biImagePreloader._onerror();};_p.getWidth=function(){if(BiBrowserCheck.moz)
return this._jsImage.naturalWidth;else return this._jsImage.width;};_p.getHeight=function(){if(BiBrowserCheck.moz)
return this._jsImage.naturalHeight;else return this._jsImage.height;};_p.getLoaded=function(){if(BiBrowserCheck.ie)
return this._jsImage.readyState=="complete";else return this._loaded;}
_p._isPng=function(){return/\.png$/i.test(this._jsImage.nameProp);};_p.dispose=function(){if(this._disposed)return;BiEventTarget.prototype.dispose.call(this);this._jsImage.onload=this._jsImage.onerror=null;this._jsImage._biImagePreloader=null;this._jsImage=null;this._uri=null;this._loaded=false;};_p._onload=function(){this._loaded=true;this.dispatchEvent(new BiEvent("load"));};_p._onerror=function(){this._loaded=false;this.dispatchEvent(new BiEvent("error"));};function BiImage(oUri,nWidth,nHeight)
{BiComponent.call(this);this.setHtmlProperty("src",BiImage.BLANK_IMAGE_URI);this.setCanSelect(false);if(nWidth!=null)
this.setWidth(nWidth);if(nHeight!=null)
this.setHeight(nHeight);if(oUri)
this.setUri(oUri);}
_p=BiImage.prototype=new BiComponent;_p._className="BiImage";BiImage.BLANK_IMAGE_URI=application.getPath()+"images/blank.gif";BiImage.fromUri=function(oUri)
{return new BiImage(oUri);};_p._uri=null;_p._tagName="IMG";_p._width=null;_p._height=null;_p.setUri=function(oUri)
{if(this._uri!=oUri)
{if(this._imagePreloader)
{this._imagePreloader.removeEventListener("load",this._onload,this);this._imagePreloader.removeEventListener("error",this._onerror,this);}
if(oUri!=null)
{if(oUri instanceof BiUri)
this._uri=oUri;else this._uri=new BiUri(application.getAdfPath(),oUri);}
else this._uri=null;if(this._uri)
{this._imagePreloader=new BiImagePreloader(this._uri);if(this._imagePreloader.getLoaded())
this._onload();else {this._imagePreloader.addEventListener("load",this._onload,this);this._imagePreloader.addEventListener("error",this._onerror,this);}}}};BiImage.prototype.getUri=function(){return this._uri;};_p.getPreferredWidth=function()
{if(this._preferredWidth!=null)
return this._preferredWidth;if(this._imagePreloader)
return this._imagePreloader.getWidth();throw new Error("No image file");};_p.getPreferredHeight=function()
{if(this._preferredHeight!=null)
return this._preferredHeight;if(this._imagePreloader)
return this._imagePreloader.getHeight();throw new Error("No image file");};_p.getWidth=function()
{if(this._width!=null&&(this._left==null||this._right==null))
return this._width;else return BiComponent.prototype.getWidth.call(this);};_p.getHeight=function()
{if(this._height!=null&&(this._top==null||this._bottom==null))
return this._height;else return BiComponent.prototype.getHeight.call(this);};_p.getLoaded=function()
{if(this._imagePreloader)
return this._imagePreloader.getLoaded();throw new Error("No image file");};_p.dispose=function()
{if(this._disposed)return;if(this._imagePreloader)
{this._imagePreloader.removeEventListener("load",this._onload,this);this._imagePreloader.removeEventListener("error",this._onerror,this);}
this._imagePreloader=null;if(this._element)
this._element.style.filter="none";BiComponent.prototype.dispose.call(this);};_p._create=function(oDocument)
{BiComponent.prototype._create.call(this,oDocument);this._element.removeAttribute("width");this._element.removeAttribute("height");};_p._recreate=function()
{if(!this._created||this._disposed)return;var el=this._element;if(!el||!el.parentNode)return;if(el)
{el._biComponent=null;el.onscroll=el.onresize=el.onlosecapture=null;el.style.filter="";}
this._create(this._document);if(el.parentNode)
el.parentNode.replaceChild(this._element,el);};_p._onload=function()
{if(BiBrowserCheck.ie)
{if(this._isPng())
{var w=this._width;var h=this._height
this.setHtmlProperty("src",BiImage.BLANK_IMAGE_URI);if(w==null)
this.setStyleProperty("width",this.getPreferredWidth()+"px");if(h==null)
this.setStyleProperty("height",this.getPreferredHeight()+"px");this._recreate();this.setStyleProperty("filter","progid:DXImageTransform.Microsoft."+"AlphaImageLoader(src='"+this._uri+"',sizingMethod='scale')");}
else {this.removeStyleProperty("filter");this.setHtmlProperty("src",String(this._uri));if(this._width==""||this._width==null)
this.removeStyleProperty("width");if(this._height==""||this._height==null)
this.removeStyleProperty("height");}}
else {this.setHtmlProperty("src",String(this._uri));}
this.dispatchEvent(new BiEvent("load"));};_p._onerror=function()
{this.dispatchEvent(new BiEvent("error"));};_p._isPng=function()
{if(this._imagePreloader)
return this._imagePreloader._isPng();return false;};if(BiBrowserCheck.ie)
{_p.setOpacity=function(n)
{if(this._opacity!=n)
{this._opacity=n;var x=Math.max(0,Math.min(100,Math.round(n*100)));var base=this._isPng()?"progid:DXImageTransform.Microsoft."+"AlphaImageLoader(src='"+this._uri+"',sizingMethod='scale')":"";if(x==100)
this.setStyleProperty("filter",base);else this.setStyleProperty("filter","Alpha(Opacity="+x+") "+base);}};}
_p.getIconHtml=function(bHasText,bEnabled,sIconPosition,nIconTextGap,sClassName)
{if(typeof bHasText!="boolean")
{throw new Exception("BiImage getIconHtml has changed");var c=bHasText;bHasText=!(c._html==""||c._text=="");bEnabled=c.getEnabled();sIconPosition=c.getIconPosition();nIconTextGap=c.getIconTextGap();}
var w=this._width;var h=this._height;if(this.getLoaded())
{if(w==null)
w=this.getPreferredWidth();if(h==null)
h=this.getPreferredHeight();}
var marginSide,blockStyle="";switch(sIconPosition)
{case"right":marginSide="left";break;case"top":marginSide="bottom";blockStyle="display:block;"
break;case"bottom":marginSide="top";blockStyle="display:block;"
break;default:marginSide="right";break;}
var iconTextGap=bHasText?nIconTextGap:0;if(BiBrowserCheck.ie)
{var isPng=this._isPng();var uri=!isPng?this.getUri():BiImage.BLANK_IMAGE_URI;var imgFilter;if(isPng){imgFilter="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+this.getUri()+"',sizingMethod='scale');";spanFilter="filter:gray() alpha(opacity=50);";}
else{imgFilter=bEnabled?"":"filter:gray() alpha(opacity=50);";spanFilter="";}
return(!bEnabled&&isPng?"<span style=\""+spanFilter+"width:1px;"+blockStyle+"\">":"")+"<img src=\""+uri+"\" style=\"vertical-align:middle;"+(w?"width:"+w+"px;":"")+(h?"height:"+h+"px;":"")+blockStyle+imgFilter+"margin-"+marginSide+":"+iconTextGap+"px;\""+(sClassName?" class=\""+sClassName+"\"":"")+(!bEnabled&&isPng?"></span>":">");}
else {var brBefore=sIconPosition=="bottom"&&bHasText?"<br>":"";var brAfter=sIconPosition=="top"&&bHasText?"<br>":"";return brBefore+"<img src=\""+this.getUri()+"\" style=\"vertical-align:middle;"+"width:"+w+"px;"+"height:"+h+"px;"+(!bEnabled?"-moz-opacity:0.5

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久久久久户外露出| 26uuu亚洲综合色| 91亚洲国产成人精品一区二三 | 亚洲精品精品亚洲| 国产精品护士白丝一区av| 久久精品亚洲乱码伦伦中文 | 国产精品沙发午睡系列990531| 久久综合九色综合欧美亚洲| 欧美xxxxxxxx| 精品成人一区二区三区四区| 精品不卡在线视频| 久久久久国产精品麻豆 | 国产在线视频一区二区三区| 久久国产精品99久久人人澡| 蜜臀av一区二区| 美女国产一区二区| 国产一区二区三区av电影| 国产麻豆成人精品| 成人免费黄色在线| 91日韩精品一区| 欧美日本一道本| 精品美女在线观看| 国产婷婷色一区二区三区四区| 国产欧美日韩视频一区二区| 一色屋精品亚洲香蕉网站| 一区二区三区在线高清| 五月天国产精品| 国产伦精品一区二区三区视频青涩| 国产精品原创巨作av| 99久久免费视频.com| 欧美日韩你懂的| 久久婷婷成人综合色| 国产精品视频第一区| 亚洲在线视频免费观看| 欧美aa在线视频| 成人网在线播放| 欧美性xxxxxxxx| 精品国产伦理网| 亚洲色图.com| 青青草国产精品97视觉盛宴| 国产成人av一区二区三区在线 | 国产伦精品一区二区三区免费| 亚洲天堂网中文字| 精品欧美一区二区久久| 国产精品久久久久久久久久久免费看 | 国产69精品久久99不卡| 日本精品视频一区二区三区| 91精品国产一区二区三区| 国产日本一区二区| 亚洲国产一区二区在线播放| 经典三级视频一区| 91成人在线精品| 精品国产伦一区二区三区观看方式 | 污片在线观看一区二区| 国产99久久久精品| 欧美日韩国产一区| 国产精品久久久久aaaa樱花 | 91影院在线免费观看| 欧美精品亚洲一区二区在线播放| 国产欧美一区二区在线观看| 亚洲国产精品久久久久婷婷884| 精品一区二区三区在线观看国产| 色噜噜狠狠成人中文综合| 精品国产一区二区亚洲人成毛片| 亚洲免费电影在线| 国产69精品久久777的优势| 欧美日韩国产在线观看| 国产精品免费av| 伦理电影国产精品| 奇米888四色在线精品| 一本在线高清不卡dvd| 欧美大片在线观看| 丝袜美腿亚洲综合| 91久久精品一区二区二区| 久久午夜国产精品| 麻豆成人久久精品二区三区红 | 免费三级欧美电影| 色网站国产精品| 亚洲丝袜美腿综合| 成人黄色av网站在线| 欧美色综合天天久久综合精品| 18欧美乱大交hd1984| 国产一区亚洲一区| 欧美日韩一区不卡| 亚洲综合免费观看高清完整版 | 国产日本一区二区| 丝袜美腿亚洲一区| 91精品国产麻豆国产自产在线 | 久久亚洲二区三区| 亚洲精品国久久99热| av在线一区二区三区| 久久久精品中文字幕麻豆发布| 奇米色一区二区| 91麻豆精品国产91| 丝袜亚洲另类欧美| 欧美喷潮久久久xxxxx| 亚洲一区在线视频观看| 色香色香欲天天天影视综合网| 国产精品美女久久久久aⅴ国产馆| 国产一区二区三区四| 精品日韩欧美一区二区| 久久精品国内一区二区三区| 3d动漫精品啪啪| 日韩精品免费专区| 欧美丰满少妇xxxbbb| 午夜精品久久久久久久99水蜜桃 | 不卡一区二区三区四区| 国产午夜一区二区三区| 国产精品一区二区在线观看网站| 欧美白人最猛性xxxxx69交| 美女视频一区在线观看| 欧美成人艳星乳罩| 国产精品一区二区三区网站| 久久蜜桃av一区二区天堂| 国产成人精品三级| 中文字幕在线不卡一区| 色婷婷久久一区二区三区麻豆| 国产精品卡一卡二| 欧美国产一区二区| 不卡av免费在线观看| 中文字幕在线不卡一区| 色婷婷综合久久久久中文| 一区二区欧美在线观看| 欧美私人免费视频| 奇米影视在线99精品| xvideos.蜜桃一区二区| 国产成人av一区| 亚洲精品国久久99热| 欧美乱熟臀69xxxxxx| 免费观看91视频大全| 久久亚洲精品小早川怜子| 成人免费视频app| 亚洲一区免费在线观看| 日韩一级大片在线观看| 国产精品一区不卡| 亚洲欧美另类图片小说| 欧美一区二区在线视频| 国产精品亚洲专一区二区三区 | 偷窥国产亚洲免费视频| 日韩精品综合一本久道在线视频| 国产乱码精品一区二区三区忘忧草| 综合欧美一区二区三区| 欧美精品一二三四| 国产成人免费视频网站高清观看视频 | 国产亚洲欧美日韩在线一区| 97精品超碰一区二区三区| 天天综合天天综合色| 国产喷白浆一区二区三区| 欧美图区在线视频| 国产伦精品一区二区三区视频青涩 | 亚洲久本草在线中文字幕| 欧美日韩国产大片| 国产大片一区二区| 天天av天天翘天天综合网 | 亚洲天天做日日做天天谢日日欢| 欧美精品一二三| jlzzjlzz欧美大全| 日本欧美一区二区在线观看| 中文字幕欧美日韩一区| 欧美精品亚洲二区| 99re这里都是精品| 极品美女销魂一区二区三区免费| ...av二区三区久久精品| 日韩一区二区三区免费观看| 成人av电影在线播放| 青草av.久久免费一区| 中文字幕一区二区三区在线观看| 一区二区三区日韩在线观看| 日韩三级免费观看| 一本色道a无线码一区v| 国产一区二三区| 亚洲成人综合在线| 国产精品萝li| 精品国产乱码久久久久久蜜臀| 91久久奴性调教| 白白色亚洲国产精品| 精品一区二区三区免费视频| 亚洲国产wwwccc36天堂| 国产精品久久久久久久久久免费看 | 亚洲第一福利视频在线| 国产偷v国产偷v亚洲高清| 欧美一区二区二区| 欧美亚洲综合另类| 成人高清在线视频| 九九久久精品视频| 日本亚洲视频在线| 一区二区三区精品视频在线| 中文字幕乱码久久午夜不卡 | 日日夜夜精品视频免费| 一区二区三区四区不卡在线| 国产女主播一区| 精品国产免费一区二区三区四区 | 一区二区三区日韩精品| 国产精品久久久久久久久动漫 | 中文字幕一区二区三区在线观看 | 成人免费一区二区三区在线观看| 国产日韩亚洲欧美综合| 亚洲精品一区二区三区在线观看| 欧美一级片免费看| 欧美精品777|