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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? dom-min.js

?? grails用戶使用指南
?? JS
字號:
YAHOO.util.Dom=function(){var ua=navigator.userAgent.toLowerCase();var isOpera=(ua.indexOf('opera')!=-1);var isIE=(ua.indexOf('msie')!=-1&&!isOpera);var id_counter=0;return{get:function(el){if(typeof el!='string'&&!(el instanceof Array)){return el;}if(typeof el=='string'){return document.getElementById(el);}else{var collection=[];for(var i=0,len=el.length;i<len;++i){collection[collection.length]=this.get(el[i]);}return collection;}return null;},getStyle:function(el,property){var f=function(el){var value=null;var dv=document.defaultView;if(property=='opacity'&&el.filters){value=1;try{value=el.filters.item('DXImageTransform.Microsoft.Alpha').opacity/100;}catch(e){try{value=el.filters.item('alpha').opacity/100;}catch(e){}}}else if(el.style[property]){value=el.style[property];}else if(el.currentStyle&&el.currentStyle[property]){value=el.currentStyle[property];}else if(dv&&dv.getComputedStyle){var converted='';for(var i=0,len=property.length;i<len;++i){if(property.charAt(i)==property.charAt(i).toUpperCase()){converted=converted+'-'+property.charAt(i).toLowerCase();}else{converted=converted+property.charAt(i);}}if(dv.getComputedStyle(el,'')&&dv.getComputedStyle(el,'').getPropertyValue(converted)){value=dv.getComputedStyle(el,'').getPropertyValue(converted);}}return value;};return this.batch(el,f,this,true);},setStyle:function(el,property,val){var f=function(el){switch(property){case'opacity':if(isIE&&typeof el.style.filter=='string'){el.style.filter='alpha(opacity='+val*100+')';if(!el.currentStyle||!el.currentStyle.hasLayout){el.style.zoom=1;}}else{el.style.opacity=val;el.style['-moz-opacity']=val;el.style['-khtml-opacity']=val;}break;default:el.style[property]=val;}};this.batch(el,f,this,true);},getXY:function(el){var f=function(el){if(el.parentNode===null||this.getStyle(el,'display')=='none'){return false;}var parent=null;var pos=[];var box;if(el.getBoundingClientRect){box=el.getBoundingClientRect();var scrollTop=Math.max(document.documentElement.scrollTop,document.body.scrollTop);var scrollLeft=Math.max(document.documentElement.scrollLeft,document.body.scrollLeft);return[box.left+scrollLeft,box.top+scrollTop];}else if(document.getBoxObjectFor){box=document.getBoxObjectFor(el);var borderLeft=parseInt(this.getStyle(el,'borderLeftWidth'));var borderTop=parseInt(this.getStyle(el,'borderTopWidth'));pos=[box.x-borderLeft,box.y-borderTop];}else{pos=[el.offsetLeft,el.offsetTop];parent=el.offsetParent;if(parent!=el){while(parent){pos[0]+=parent.offsetLeft;pos[1]+=parent.offsetTop;parent=parent.offsetParent;}}if(ua.indexOf('opera')!=-1||(ua.indexOf('safari')!=-1&&this.getStyle(el,'position')=='absolute')){pos[0]-=document.body.offsetLeft;pos[1]-=document.body.offsetTop;}}if(el.parentNode){parent=el.parentNode;}else{parent=null;}while(parent&&parent.tagName!='BODY'&&parent.tagName!='HTML'){pos[0]-=parent.scrollLeft;pos[1]-=parent.scrollTop;if(parent.parentNode){parent=parent.parentNode;}else{parent=null;}}return pos;};return this.batch(el,f,this,true);},getX:function(el){return this.getXY(el)[0];},getY:function(el){return this.getXY(el)[1];},setXY:function(el,pos,noRetry){var f=function(el){var style_pos=this.getStyle(el,'position');if(style_pos=='static'){this.setStyle(el,'position','relative');style_pos='relative';}var pageXY=YAHOO.util.Dom.getXY(el);if(pageXY===false){return false;}var delta=[parseInt(YAHOO.util.Dom.getStyle(el,'left'),10),parseInt(YAHOO.util.Dom.getStyle(el,'top'),10)];if(isNaN(delta[0])){delta[0]=(style_pos=='relative')?0:el.offsetLeft;}if(isNaN(delta[1])){delta[1]=(style_pos=='relative')?0:el.offsetTop;}if(pos[0]!==null){el.style.left=pos[0]-pageXY[0]+delta[0]+'px';}if(pos[1]!==null){el.style.top=pos[1]-pageXY[1]+delta[1]+'px';}var newXY=this.getXY(el);if(!noRetry&&(newXY[0]!=pos[0]||newXY[1]!=pos[1])){var retry=function(){YAHOO.util.Dom.setXY(el,pos,true);};setTimeout(retry,0);}};this.batch(el,f,this,true);},setX:function(el,x){this.setXY(el,[x,null]);},setY:function(el,y){this.setXY(el,[null,y]);},getRegion:function(el){var f=function(el){return new YAHOO.util.Region.getRegion(el);};return this.batch(el,f,this,true);},getClientWidth:function(){return this.getViewportWidth();},getClientHeight:function(){return this.getViewportHeight();},getElementsByClassName:function(className,tag,root){var re=new RegExp('(?:^|\\s+)'+className+'(?:\\s+|$)');var method=function(el){return re.test(el['className']);};return this.getElementsBy(method,tag,root);},hasClass:function(el,className){var f=function(el){var re=new RegExp('(?:^|\\s+)'+className+'(?:\\s+|$)');return re.test(el['className']);};return this.batch(el,f,this,true);},addClass:function(el,className){var f=function(el){if(this.hasClass(el,className)){return;}el['className']=[el['className'],className].join(' ');};this.batch(el,f,this,true);},removeClass:function(el,className){var f=function(el){if(!this.hasClass(el,className)){return;}var re=new RegExp('(?:^|\\s+)'+className+'(?:\\s+|$)','g');var c=el['className'];el['className']=c.replace(re,' ');};this.batch(el,f,this,true);},replaceClass:function(el,oldClassName,newClassName){var f=function(el){this.removeClass(el,oldClassName);this.addClass(el,newClassName);};this.batch(el,f,this,true);},generateId:function(el,prefix){prefix=prefix||'yui-gen';var f=function(el){el=el||{};if(!el.id){el.id=prefix+id_counter++;}return el.id;};return this.batch(el,f,this,true);},isAncestor:function(haystack,needle){haystack=this.get(haystack);if(!haystack||!needle){return false;}var f=function(needle){if(haystack.contains&&ua.indexOf('safari')<0){return haystack.contains(needle);}else if(haystack.compareDocumentPosition){return!!(haystack.compareDocumentPosition(needle)&16);}else{var parent=needle.parentNode;while(parent){if(parent==haystack){return true;}else if(parent.tagName=='HTML'){return false;}parent=parent.parentNode;}return false;}};return this.batch(needle,f,this,true);},inDocument:function(el){var f=function(el){return this.isAncestor(document.documentElement,el);};return this.batch(el,f,this,true);},getElementsBy:function(method,tag,root){tag=tag||'*';root=this.get(root)||document;var nodes=[];var elements=root.getElementsByTagName(tag);if(!elements.length&&(tag=='*'&&root.all)){elements=root.all;}for(var i=0,len=elements.length;i<len;++i){if(method(elements[i])){nodes[nodes.length]=elements[i];}}return nodes;},batch:function(el,method,o,override){el=this.get(el);var scope=(override)?o:window;if(!el||el.tagName||!el.length){return method.call(scope,el,o);}var collection=[];for(var i=0,len=el.length;i<len;++i){collection[collection.length]=method.call(scope,el[i],o);}return collection;},getDocumentHeight:function(){var scrollHeight=-1,windowHeight=-1,bodyHeight=-1;var marginTop=parseInt(this.getStyle(document.body,'marginTop'),10);var marginBottom=parseInt(this.getStyle(document.body,'marginBottom'),10);var mode=document.compatMode;if((mode||isIE)&&!isOpera){switch(mode){case'CSS1Compat':scrollHeight=((window.innerHeight&&window.scrollMaxY)?window.innerHeight+window.scrollMaxY:-1);windowHeight=[document.documentElement.clientHeight,self.innerHeight||-1].sort(function(a,b){return(a-b);})[1];bodyHeight=document.body.offsetHeight+marginTop+marginBottom;break;default:scrollHeight=document.body.scrollHeight;bodyHeight=document.body.clientHeight;}}else{scrollHeight=document.documentElement.scrollHeight;windowHeight=self.innerHeight;bodyHeight=document.documentElement.clientHeight;}var h=[scrollHeight,windowHeight,bodyHeight].sort(function(a,b){return(a-b);});return h[2];},getDocumentWidth:function(){var docWidth=-1,bodyWidth=-1,winWidth=-1;var marginRight=parseInt(this.getStyle(document.body,'marginRight'),10);var marginLeft=parseInt(this.getStyle(document.body,'marginLeft'),10);var mode=document.compatMode;if(mode||isIE){switch(mode){case'CSS1Compat':docWidth=document.documentElement.clientWidth;bodyWidth=document.body.offsetWidth+marginLeft+marginRight;winWidth=self.innerWidth||-1;break;default:bodyWidth=document.body.clientWidth;winWidth=document.body.scrollWidth;break;}}else{docWidth=document.documentElement.clientWidth;bodyWidth=document.body.offsetWidth+marginLeft+marginRight;winWidth=self.innerWidth;}var w=[docWidth,bodyWidth,winWidth].sort(function(a,b){return(a-b);});return w[2];},getViewportHeight:function(){var height=-1;var mode=document.compatMode;if((mode||isIE)&&!isOpera){switch(mode){case'CSS1Compat':height=document.documentElement.clientHeight;break;default:height=document.body.clientHeight;}}else{height=self.innerHeight;}return height;},getViewportWidth:function(){var width=-1;var mode=document.compatMode;if(mode||isIE){switch(mode){case'CSS1Compat':width=document.documentElement.clientWidth;break;default:width=document.body.clientWidth;}}else{width=self.innerWidth;}return width;}};}();YAHOO.util.Region=function(t,r,b,l){this.top=t;this[1]=t;this.right=r;this.bottom=b;this.left=l;this[0]=l;};YAHOO.util.Region.prototype.contains=function(region){return(region.left>=this.left&&region.right<=this.right&&region.top>=this.top&&region.bottom<=this.bottom);};YAHOO.util.Region.prototype.getArea=function(){return((this.bottom-this.top)*(this.right-this.left));};YAHOO.util.Region.prototype.intersect=function(region){var t=Math.max(this.top,region.top);var r=Math.min(this.right,region.right);var b=Math.min(this.bottom,region.bottom);var l=Math.max(this.left,region.left);if(b>=t&&r>=l){return new YAHOO.util.Region(t,r,b,l);}else{return null;}};YAHOO.util.Region.prototype.union=function(region){var t=Math.min(this.top,region.top);var r=Math.max(this.right,region.right);var b=Math.max(this.bottom,region.bottom);var l=Math.min(this.left,region.left);return new YAHOO.util.Region(t,r,b,l);};YAHOO.util.Region.prototype.toString=function(){return("Region {"+"t: "+this.top+", r: "+this.right+", b: "+this.bottom+", l: "+this.left+"}");};YAHOO.util.Region.getRegion=function(el){var p=YAHOO.util.Dom.getXY(el);var t=p[1];var r=p[0]+el.offsetWidth;var b=p[1]+el.offsetHeight;var l=p[0];return new YAHOO.util.Region(t,r,b,l);};YAHOO.util.Point=function(x,y){this.x=x;this.y=y;this.top=y;this[1]=y;this.right=x;this.bottom=y;this.left=x;this[0]=x;};YAHOO.util.Point.prototype=new YAHOO.util.Region();

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久久久电影| 国产女同互慰高潮91漫画| 色久优优欧美色久优优| 岛国av在线一区| 九九九久久久精品| 日韩高清在线电影| 五月婷婷综合激情| 奇米精品一区二区三区在线观看一 | 成人黄色大片在线观看| 亚洲一区二区五区| 91激情五月电影| 三级久久三级久久久| 亚洲午夜羞羞片| 亚洲一二三专区| 亚洲高清在线视频| 日韩影院精彩在线| 中文字幕一区二区在线播放| 国产精品国产三级国产aⅴ原创| 国产欧美精品一区| 国产精品萝li| 中文字幕亚洲电影| 亚洲欧洲综合另类在线| 亚洲欧洲日产国码二区| 一区二区三区欧美| 亚洲成a人在线观看| 日韩激情一区二区| 久久精品国产一区二区| 国产一区二区剧情av在线| 国内外成人在线视频| 国产成人久久精品77777最新版本| 亚洲第一综合色| 日韩av网站免费在线| 美女诱惑一区二区| 国产一区二区三区视频在线播放| 高清不卡在线观看av| 99国产精品久久久久久久久久 | 国产日产欧产精品推荐色| 欧美激情一区二区在线| 亚洲国产一区视频| 韩日欧美一区二区三区| 91蝌蚪国产九色| 日韩欧美在线不卡| 亚洲欧美日韩国产综合在线| 日韩vs国产vs欧美| 精品夜夜嗨av一区二区三区| 日本大胆欧美人术艺术动态| 51精品视频一区二区三区| 日韩精品最新网址| 国产日韩欧美制服另类| 亚洲色图欧洲色图婷婷| 日韩精品电影在线| 91在线视频官网| 日韩亚洲欧美高清| 一区二区三区欧美| 欧美一级电影网站| 久久久一区二区三区| 亚洲欧洲精品成人久久奇米网| 亚洲午夜免费电影| 国产剧情一区二区三区| 欧美在线色视频| 国产喂奶挤奶一区二区三区| 亚洲成人av一区二区三区| 成人久久久精品乱码一区二区三区| 欧美日韩精品专区| 国产精品久久影院| 看电视剧不卡顿的网站| 色国产综合视频| 中文字幕高清一区| 激情欧美日韩一区二区| 欧美日韩一区在线观看| ...中文天堂在线一区| 国产制服丝袜一区| 欧美一卡在线观看| 亚洲国产一区在线观看| 91无套直看片红桃| 国产精品丝袜一区| 国产麻豆91精品| 欧美成人精品二区三区99精品| 一级女性全黄久久生活片免费| 不卡欧美aaaaa| 国产三区在线成人av| 亚洲成人1区2区| 国产69精品久久久久777| 欧美本精品男人aⅴ天堂| 亚洲一区二区三区四区在线免费观看 | 色婷婷综合久久久中文一区二区| 久久久国产精品不卡| 九一久久久久久| 日韩精品一区在线| 久久精品国产亚洲aⅴ| 欧美一级欧美三级在线观看| 一区二区三区日本| 色婷婷激情一区二区三区| 亚洲欧美电影院| 色偷偷久久人人79超碰人人澡| 亚洲欧洲精品一区二区三区不卡 | 欧美一级片在线观看| 日本欧美一区二区三区| 欧美日韩二区三区| 天堂av在线一区| 欧美在线你懂的| 亚洲激情校园春色| 日本高清成人免费播放| 亚洲一二三专区| 欧美裸体一区二区三区| 极品美女销魂一区二区三区免费| 色婷婷久久一区二区三区麻豆| 亚洲免费在线看| 日韩免费看网站| 91网站在线播放| 婷婷一区二区三区| 中文字幕av资源一区| 欧美在线观看一区| 国产99久久久国产精品免费看| 亚洲精品一二三四区| 欧美xxx久久| 不卡欧美aaaaa| 亚洲欧美另类在线| 91官网在线观看| 日韩福利电影在线| 欧美一卡在线观看| 国产伦理精品不卡| 国产欧美精品一区aⅴ影院| 暴力调教一区二区三区| 一区二区三区91| 91精品国产综合久久香蕉的特点| 蜜桃免费网站一区二区三区| 欧美自拍偷拍午夜视频| 亚洲精品大片www| 91麻豆精品国产| 国产夫妻精品视频| 亚洲视频中文字幕| 欧美精品第1页| 国产精品2024| 一区二区中文视频| 欧美日韩国产综合一区二区| 久久精品国产一区二区三区免费看| 国产视频一区在线播放| 色狠狠一区二区三区香蕉| 午夜a成v人精品| 欧美激情一区二区在线| 日本成人超碰在线观看| 在线播放日韩导航| 国产一区免费电影| 亚洲人成影院在线观看| 欧美一区欧美二区| 不卡欧美aaaaa| 免费成人在线网站| 中文在线一区二区| 91麻豆精品国产91久久久| 粉嫩绯色av一区二区在线观看| 一级做a爱片久久| 2022国产精品视频| 在线看不卡av| 国产一区二区中文字幕| 亚洲国产精品麻豆| 日本一区二区三区四区在线视频| 欧美日韩久久一区| 成人一区二区视频| 日本一道高清亚洲日美韩| 国产精品久久久久天堂| 日韩午夜av电影| 色美美综合视频| 国产精品18久久久久久久久久久久| 亚洲香肠在线观看| 国产精品久久久久影院色老大 | 欧美一区二区三区免费大片| 日韩电影免费一区| eeuss国产一区二区三区| 在线综合亚洲欧美在线视频| 欧美极品xxx| 日本欧美肥老太交大片| 99精品欧美一区| 91精品国产全国免费观看| 成人免费在线播放视频| 日本不卡视频一二三区| 色婷婷久久久久swag精品| 国产精品无圣光一区二区| 一本一道久久a久久精品 | 欧美久久一二三四区| 五月天激情综合网| 亚洲免费伊人电影| 日本一二三四高清不卡| 欧美精品一区男女天堂| 欧美一区二区三区免费| 欧美日韩一区久久| 91国偷自产一区二区开放时间| 国产精品一区二区视频| 精品一区二区三区欧美| 日韩国产精品久久| 亚洲一区二区视频| 亚洲精品日韩一| 国产精品嫩草影院av蜜臀| 国产亚洲精品bt天堂精选| 日韩精品一区国产麻豆| 日韩午夜av电影| 这里只有精品电影| 欧美日韩精品一区二区三区蜜桃| 色天使色偷偷av一区二区| 91视频你懂的|