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

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

?? yui-ext-debug.js

?? 一個使用yui-ext庫
?? JS
?? 第 1 頁 / 共 5 頁
字號:
     setSize : function(width, height, animate, duration, onComplete, easing){
        if(!animate || !YAHOO.util.Anim){
            this.setWidth(width);
            this.setHeight(height);
        }else{
            width = this.adjustWidth(width); height = this.adjustHeight(height);
            this.anim({width: {to: width}, height: {to: height}}, duration, onComplete, easing);
        }
        return this;
    },
    
    
    setBounds : function(x, y, width, height, animate, duration, onComplete, easing){
        if(!animate || !YAHOO.util.Anim){
            this.setWidth(width);
            this.setHeight(height);
            this.setLocation(x, y);
        }else{
            width = this.adjustWidth(width); height = this.adjustHeight(height);
            this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}}, duration, onComplete, easing, YAHOO.util.Motion);
        }
        return this;
    },
    
    
    setRegion : function(region, animate, duration, onComplete, easing){
        this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, animate, duration, onComplete, easing);
        return this;
    },
    
    
    addListener : function(eventName, handler, scope, override){
        YAHOO.util.Event.addListener(this.dom, eventName, handler, scope || this, true);
        return this;
    },
    
    bufferedListener : function(eventName, fn, scope, millis){
        var task = new YAHOO.ext.util.DelayedTask();
        scope = scope || this;
        var newFn = function(){
            task.delay(millis || 250, fn, scope, Array.prototype.slice.call(arguments, 0));
        }
        this.addListener(eventName, newFn);
        return newFn;
    },
    
    
    
    addHandler : function(eventName, stopPropagation, handler, scope, override){
        var fn = YAHOO.ext.Element.createStopHandler(stopPropagation, handler, scope || this, true);
        YAHOO.util.Event.addListener(this.dom, eventName, fn);
        return this;
    },
    
    
    on : function(eventName, handler, scope, override){
        YAHOO.util.Event.addListener(this.dom, eventName, handler, scope || this, true);
        return this;
    },
    
    
    addManagedListener : function(eventName, fn, scope, override){
        return YAHOO.ext.EventManager.on(this.dom, eventName, fn, scope || this, true);
    },
    
    
    mon : function(eventName, fn, scope, override){
        return YAHOO.ext.EventManager.on(this.dom, eventName, fn, scope || this, true);
    },
    
    removeListener : function(eventName, handler, scope){
        YAHOO.util.Event.removeListener(this.dom, eventName, handler);
        return this;
    },
    
    
    removeAllListeners : function(){
        YAHOO.util.Event.purgeElement(this.dom);
        return this;
    },
    
    
    
     setOpacity : function(opacity, animate, duration, onComplete, easing){
        if(!animate || !YAHOO.util.Anim){
            YAHOO.util.Dom.setStyle(this.dom, 'opacity', opacity);
        }else{
            this.anim({opacity: {to: opacity}}, duration, onComplete, easing);
        }
        return this;
    },
    
    
    getLeft : function(local){
        if(!local){
            return this.getX();
        }else{
            return parseInt(this.getStyle('left'), 10) || 0;
        }
    },
    
    
    getRight : function(local){
        if(!local){
            return this.getX() + this.getWidth();
        }else{
            return (this.getLeft(true) + this.getWidth()) || 0;
        }
    },
    
    
    getTop : function(local) {
        if(!local){
            return this.getY();
        }else{
            return parseInt(this.getStyle('top'), 10) || 0;
        }
    },
    
    
    getBottom : function(local){
        if(!local){
            return this.getY() + this.getHeight();
        }else{
            return (this.getTop(true) + this.getHeight()) || 0;
        }
    },
    
    
    setAbsolutePositioned : function(zIndex){
        this.setStyle('position', 'absolute');
        if(zIndex){
            this.setStyle('z-index', zIndex);
        }
        return this;
    },
    
    
    setRelativePositioned : function(zIndex){
        this.setStyle('position', 'relative');
        if(zIndex){
            this.setStyle('z-index', zIndex);
        }
        return this;
    },
    
    
    clearPositioning : function(){
        this.setStyle('position', '');
        this.setStyle('left', '');
        this.setStyle('right', '');
        this.setStyle('top', '');
        this.setStyle('bottom', '');
        return this;
    },
    
    
    getPositioning : function(){
        return {
            'position' : this.getStyle('position'),
            'left' : this.getStyle('left'),
            'right' : this.getStyle('right'),
            'top' : this.getStyle('top'),
            'bottom' : this.getStyle('bottom')
        };
    },
    
    
    getBorderWidth : function(side){
        return this.addStyles(side, YAHOO.ext.Element.borders);
    },
    
    
    getPadding : function(side){
        return this.addStyles(side, YAHOO.ext.Element.paddings);
    },
    
    
    setPositioning : function(positionCfg){
        if(positionCfg.position)this.setStyle('position', positionCfg.position);
        if(positionCfg.left)this.setLeft(positionCfg.left);
        if(positionCfg.right)this.setRight(positionCfg.right);
        if(positionCfg.top)this.setTop(positionCfg.top);
        if(positionCfg.bottom)this.setBottom(positionCfg.bottom);
        return this;
    },
    
    
    
     setLeftTop : function(left, top){
        this.dom.style.left = this.addUnits(left);
        this.dom.style.top = this.addUnits(top);
        return this;
    },
    
    
     move : function(direction, distance, animate, duration, onComplete, easing){
        var xy = this.getXY();
        direction = direction.toLowerCase();
        switch(direction){
            case 'l':
            case 'left':
                this.moveTo(xy[0]-distance, xy[1], animate, duration, onComplete, easing);
                break;
           case 'r':
           case 'right':
                this.moveTo(xy[0]+distance, xy[1], animate, duration, onComplete, easing);
                break;
           case 't':
           case 'top':
           case 'up':
                this.moveTo(xy[0], xy[1]-distance, animate, duration, onComplete, easing);
                break;
           case 'b':
           case 'bottom':
           case 'down':
                this.moveTo(xy[0], xy[1]+distance, animate, duration, onComplete, easing);
                break;
        }
        return this;
    },
    
    
    clip : function(){
        if(!this.isClipped){
           this.isClipped = true;
           this.originalClip = {
               'o': this.getStyle('overflow'), 
               'x': this.getStyle('overflow-x'),
               'y': this.getStyle('overflow-y')
           };
           this.setStyle('overflow', 'hidden');
           this.setStyle('overflow-x', 'hidden');
           this.setStyle('overflow-y', 'hidden');
        }
        return this;
    },
    
    
    unclip : function(){
        if(this.isClipped){
            this.isClipped = false;
            var o = this.originalClip;
            if(o.o){this.setStyle('overflow', o.o);}
            if(o.x){this.setStyle('overflow-x', o.x);}
            if(o.y){this.setStyle('overflow-y', o.y);}
        }
        return this;
    },
    
    
     alignTo : function(element, position, offsets, animate, duration, onComplete, easing){
        var otherEl = getEl(element);
        if(!otherEl){
            return this;         }
        offsets = offsets || [0, 0];
        var r = otherEl.getRegion();
        position = position.toLowerCase();
        switch(position){
           case 'bl':
                this.moveTo(r.left + offsets[0], r.bottom + offsets[1], 
                            animate, duration, onComplete, easing);
                break;
           case 'br':
                this.moveTo(r.right + offsets[0], r.bottom + offsets[1], 
                            animate, duration, onComplete, easing);
                break;
           case 'tl':
                this.moveTo(r.left + offsets[0], r.top + offsets[1], 
                            animate, duration, onComplete, easing);
                break;
           case 'tr':
                this.moveTo(r.right + offsets[0], r.top + offsets[1], 
                            animate, duration, onComplete, easing);
                break;
        }
        return this;
    },
    
    
    clearOpacity : function(){
        if (window.ActiveXObject) {
            this.dom.style.filter = '';
        } else {
            this.dom.style.opacity = '';
            this.dom.style['-moz-opacity'] = '';
            this.dom.style['-khtml-opacity'] = '';
        }
        return this;
    },
    
    
    hide : function(animate, duration, onComplete, easing){
        this.setVisible(false, animate, duration, onComplete, easing);
        return this;
    },
    
    
    show : function(animate, duration, onComplete, easing){
        this.setVisible(true, animate, duration, onComplete, easing);
        return this;
    },
    
    
    addUnits : function(size){
        if(size === '' || size == 'auto' || typeof size == 'undefined'){
            return size;
        }
        if(typeof size == 'number' || !YAHOO.ext.Element.unitPattern.test(size)){
            return size + this.defaultUnit;
        }
        return size;
    },
    
    
    beginMeasure : function(){
        var el = this.dom;
        if(el.offsetWidth || el.offsetHeight){
            return this;         }
        var changed = [];
        var p = this.dom;         while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p.tagName.toLowerCase() != 'body'){
            if(YAHOO.util.Dom.getStyle(p, 'display') == 'none'){
                changed.push({el: p, visibility: YAHOO.util.Dom.getStyle(p, 'visibility')});
                p.style.visibility = 'hidden';
                p.style.display = 'block';
            }
            p = p.parentNode;
        }
        this._measureChanged = changed;
        return this;
               
    },
    
    
    endMeasure : function(){
        var changed = this._measureChanged;
        if(changed){
            for(var i = 0, len = changed.length; i < len; i++) {
            	var r = changed[i];
            	r.el.style.visibility = r.visibility;
                r.el.style.display = 'none';
            }
            this._measureChanged = null;
        }
        return this;
    },
    
    
    update : function(html, loadScripts, callback){
        if(typeof html == 'undefined'){
            html = '';
        }
        if(loadScripts !== true){
            this.dom.innerHTML = html;
            if(typeof callback == 'function'){
                callback();
            }
            return this;
        }
        var id = YAHOO.util.Dom.generateId();
        var dom = this.dom;
        
        html += '<span id="' + id + '"></span>';
        
        YAHOO.util.Event.onAvailable(id, function(){
            var hd = document.getElementsByTagName("head")[0];
            var re = /(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/img; 
            var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
            var match;
            while(match = re.exec(html)){
                var srcMatch = match[0].match(srcRe);
                if(srcMatch && srcMatch[2]){
                   var s = document.createElement("script");
                   s.src = srcMatch[2];
                   hd.appendChild(s);
                }else if(match[1] && match[1].length > 0){
                   eval(match[1]);
                }                     
            }
            var el = document.getElementById(id);
            if(el){el.parentNode.removeChild(el);}
            if(typeof callback == 'function'){
                callback();
            }
        });
        dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/img, '');
        return this;
    },
    
    
    load : function(){
        var um = this.getUpdateManager();
        um.update.apply(um, arguments);
        return this;
    },
    
    
    getUpdateManager : function(){
        if(!this.updateManager){
            this.updateManager = new YAHOO.ext.UpdateManager(this);
        }
        return this.updateManager;
    },
    
    
    unselectable : function(){
        this.dom.unselectable = 'on';
        this.swallowEvent('selectstart', true);
        this.applyStyles('-moz-user-select:none;-khtml-user-select:none;');
        return this;
    },
    
    
    getCenterXY : function(offsetScroll){
        var centerX = Math.round((YAHOO.util.Dom.getViewportWidth()-this.getWidth())/2);
        var centerY = Math.round((YAHOO.util.Dom.getViewportHeight()-this.getHeight())/2);
        if(!offsetScroll){
            return [centerX, centerY];
        }else{
            var scrollX = document.documentElement.scrollLeft || document.body.scrollLeft || 0;
            var scrollY = document.documentElement.scrollTop || document.body.scrollTop || 0;
            return[centerX + scrollX, centerY + scrollY];
        }
    },
    
    
    center : function(centerIn) {
        if(!centerIn){
            this.setXY(this.getCenterXY(true));
        }else{
            var box = YAHOO.ext.Element.get(centerIn).getBox();
            this.setXY([box.x + (box.width / 2) - (this.getWidth() / 2),
                   box.y + (box.height / 2) - (this.ge

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产区在线观看成人精品| 免费观看日韩电影| 天堂一区二区在线免费观看| 精品亚洲国内自在自线福利| 色呦呦国产精品| 久久久久久9999| 午夜精品久久久久久久| 色香蕉久久蜜桃| 国产日本亚洲高清| 麻豆国产一区二区| 69成人精品免费视频| 伊人夜夜躁av伊人久久| 成人免费毛片高清视频| 欧美变态口味重另类| 五月综合激情网| 欧美亚洲高清一区| 18涩涩午夜精品.www| 国产999精品久久久久久| 精品欧美一区二区三区精品久久| 亚洲成人动漫精品| 欧美亚洲综合色| 一区二区三区在线视频观看| 91啦中文在线观看| 亚洲视频网在线直播| 99在线热播精品免费| 亚洲欧洲精品天堂一级| 成人晚上爱看视频| 国产精品女人毛片| 床上的激情91.| 国产精品美日韩| 色综合天天综合网天天看片| 亚洲同性gay激情无套| 成人精品小蝌蚪| 中文字幕亚洲欧美在线不卡| 99久久99久久久精品齐齐| 亚洲欧洲国产日本综合| 色呦呦网站一区| 亚洲国产aⅴ成人精品无吗| 欧美日精品一区视频| 日韩国产欧美在线观看| 日韩欧美一区二区不卡| 韩国v欧美v日本v亚洲v| 久久青草国产手机看片福利盒子| 国产a精品视频| 亚洲视频精选在线| 欧美三级视频在线观看| 免费成人性网站| 久久网站最新地址| 成人激情小说网站| 一区二区三区四区在线播放 | 亚洲欧洲国产专区| 在线中文字幕一区| 免费在线视频一区| 久久久精品一品道一区| 91在线国产观看| 日韩黄色片在线观看| 2欧美一区二区三区在线观看视频| 国产成人综合在线播放| 亚洲天堂免费看| 欧美一级艳片视频免费观看| 国产乱国产乱300精品| 亚洲欧美偷拍三级| 欧美成人乱码一区二区三区| 豆国产96在线|亚洲| 亚洲成人av资源| 国产精品天天摸av网| 欧美日韩一级视频| 国产精品77777| 亚洲超碰97人人做人人爱| 国产婷婷一区二区| 欧美另类videos死尸| 成人综合婷婷国产精品久久| 亚洲小说欧美激情另类| 国产亚洲精品久| 欧美日韩成人综合| 成人av先锋影音| 美女视频黄免费的久久| 亚洲尤物视频在线| 国产日韩欧美高清| 日韩午夜精品视频| 欧美日韩综合色| 99国产精品一区| 国产999精品久久| 久久精品久久99精品久久| 一区二区国产盗摄色噜噜| 国产欧美一区视频| 日韩一级在线观看| 欧美日韩激情一区二区三区| 成人18视频日本| 国内外精品视频| 日本中文字幕一区| 亚洲国产精品一区二区www| 中文字幕二三区不卡| 日韩视频一区在线观看| 欧美色视频一区| 在线视频国内自拍亚洲视频| www.欧美日韩| 国产不卡视频在线观看| 国内精品第一页| 狠狠色丁香婷婷综合| 日本aⅴ精品一区二区三区| 亚洲国产人成综合网站| 亚洲一二三四区| 亚洲美女视频在线| 日韩美女视频19| 中文字幕在线一区免费| 欧美激情在线一区二区| 久久精品夜色噜噜亚洲a∨| 2022国产精品视频| 久久亚洲二区三区| 久久久久久免费网| 国产欧美一区二区三区在线老狼| 久久综合给合久久狠狠狠97色69| 欧美变态tickling挠脚心| 日韩午夜在线影院| 久久日一线二线三线suv| 亚洲精品在线观看网站| 精品国产免费久久| 欧美精品一区二区三区在线播放| 精品精品国产高清a毛片牛牛| 欧美一级久久久久久久大片| 日韩免费观看高清完整版| 欧美大片日本大片免费观看| 精品999久久久| 国产精品美女久久久久久久久| 日韩毛片一二三区| 亚洲综合色在线| 日韩—二三区免费观看av| 九九在线精品视频| 国模大尺度一区二区三区| 福利91精品一区二区三区| 99久久综合国产精品| 在线视频欧美精品| 日韩写真欧美这视频| 中文字幕欧美日韩一区| 亚洲一区二区黄色| 天天做天天摸天天爽国产一区 | 一区二区三区国产豹纹内裤在线| 亚洲国产综合在线| 老汉av免费一区二区三区| 国产夫妻精品视频| 91免费看`日韩一区二区| 51午夜精品国产| 欧美国产一区二区| 亚洲影院在线观看| 国内精品自线一区二区三区视频| 成人黄色片在线观看| 欧美日韩精品一区二区在线播放| 日韩精品一区二区三区在线| 国产精品久久久爽爽爽麻豆色哟哟| 自拍偷拍国产精品| 国产在线精品一区二区三区不卡| 波多野结衣欧美| 在线不卡的av| 国产精品久久久99| 日韩va亚洲va欧美va久久| 福利视频网站一区二区三区| 在线综合视频播放| 亚洲欧洲韩国日本视频| 狠狠色丁香婷综合久久| 欧美性淫爽ww久久久久无| 日本一区二区三区久久久久久久久不 | 亚洲妇女屁股眼交7| 粉嫩av亚洲一区二区图片| 6080yy午夜一二三区久久| 亚洲男人都懂的| 国产ts人妖一区二区| 欧美大黄免费观看| 亚洲国产乱码最新视频| 91一区二区三区在线观看| 精品久久人人做人人爽| 日韩在线卡一卡二| 日本黄色一区二区| 中文一区二区完整视频在线观看| 免费高清在线一区| 欧美日韩激情一区二区三区| 亚洲女人****多毛耸耸8| 国产99精品国产| 久久精品综合网| 国内精品不卡在线| 精品国精品自拍自在线| 午夜不卡av在线| 欧美日韩午夜在线视频| 一区二区在线观看免费视频播放| 国产白丝精品91爽爽久久| 久久久久久久性| 激情文学综合网| 欧美精品一区在线观看| 看片网站欧美日韩| 日韩欧美在线观看一区二区三区| 亚洲图片自拍偷拍| 在线观看91视频| 亚洲第一狼人社区| 欧美视频精品在线| 亚洲成人动漫在线观看| 欧美日韩一区二区三区四区五区| 亚洲影院在线观看| 欧美日韩免费观看一区二区三区| 一区二区三区在线免费播放| 欧美伊人精品成人久久综合97 |