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

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

?? element.js

?? ext-2.3.0
?? JS
?? 第 1 頁 / 共 5 頁
字號:
    /**     * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)     * @param {String} selector The simple selector to test     * @param {Number/Mixed} maxDepth (optional) The max depth to            search as a number or element (defaults to 10 || document.body)     * @param {Boolean} returnEl (optional) True to return a Ext.Element object instead of DOM node     * @return {HTMLElement} The matching DOM node (or null if no match was found)     */    findParentNode : function(simpleSelector, maxDepth, returnEl){        var p = Ext.fly(this.dom.parentNode, '_internal');        return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;    },    /**     * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).     * This is a shortcut for findParentNode() that always returns an Ext.Element.     * @param {String} selector The simple selector to test     * @param {Number/Mixed} maxDepth (optional) The max depth to            search as a number or element (defaults to 10 || document.body)     * @return {Ext.Element} The matching DOM node (or null if no match was found)     */    up : function(simpleSelector, maxDepth){        return this.findParentNode(simpleSelector, maxDepth, true);    },    /**     * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)     * @param {String} selector The simple selector to test     * @return {Boolean} True if this element matches the selector, else false     */    is : function(simpleSelector){        return Ext.DomQuery.is(this.dom, simpleSelector);    },    /**     * Perform animation on this element.     * @param {Object} args The animation control args     * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)     * @param {Function} onComplete (optional) Function to call when animation completes     * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')     * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'     * @return {Ext.Element} this     */    animate : function(args, duration, onComplete, easing, animType){        this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);        return this;    },    /*     * @private Internal animation call     */    anim : function(args, opt, animType, defaultDur, defaultEase, cb){        animType = animType || 'run';        opt = opt || {};        var anim = Ext.lib.Anim[animType](            this.dom, args,            (opt.duration || defaultDur) || .35,            (opt.easing || defaultEase) || 'easeOut',            function(){                Ext.callback(cb, this);                Ext.callback(opt.callback, opt.scope || this, [this, opt]);            },            this        );        opt.anim = anim;        return anim;    },    // private legacy anim prep    preanim : function(a, i){        return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});    },    /**     * Removes worthless text nodes     * @param {Boolean} forceReclean (optional) By default the element     * keeps track if it has been cleaned already so     * you can call this over and over. However, if you update the element and     * need to force a reclean, you can pass true.     */    clean : function(forceReclean){        if(this.isCleaned && forceReclean !== true){            return this;        }        var ns = /\S/;        var d = this.dom, n = d.firstChild, ni = -1; 	    while(n){ 	        var nx = n.nextSibling; 	        if(n.nodeType == 3 && !ns.test(n.nodeValue)){ 	            d.removeChild(n); 	        }else{ 	            n.nodeIndex = ++ni; 	        } 	        n = nx; 	    } 	    this.isCleaned = true; 	    return this; 	},    /**     * Scrolls this element into view within the passed container.     * @param {Mixed} container (optional) The container element to scroll (defaults to document.body).  Should be a     * string (id), dom node, or Ext.Element.     * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)     * @return {Ext.Element} this     */    scrollIntoView : function(container, hscroll){        var c = Ext.getDom(container) || Ext.getBody().dom;        var el = this.dom;        var o = this.getOffsetsTo(c),            l = o[0] + c.scrollLeft,            t = o[1] + c.scrollTop,            b = t+el.offsetHeight,            r = l+el.offsetWidth;        var ch = c.clientHeight;        var ct = parseInt(c.scrollTop, 10);        var cl = parseInt(c.scrollLeft, 10);        var cb = ct + ch;        var cr = cl + c.clientWidth;        if(el.offsetHeight > ch || t < ct){        	c.scrollTop = t;        }else if(b > cb){            c.scrollTop = b-ch;        }        c.scrollTop = c.scrollTop; // corrects IE, other browsers will ignore        if(hscroll !== false){			if(el.offsetWidth > c.clientWidth || l < cl){                c.scrollLeft = l;            }else if(r > cr){                c.scrollLeft = r-c.clientWidth;            }            c.scrollLeft = c.scrollLeft;        }        return this;    },    // private    scrollChildIntoView : function(child, hscroll){        Ext.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);    },    /**     * Measures the element's content height and updates height to match. Note: this function uses setTimeout so     * the new height may not be available immediately.     * @param {Boolean} animate (optional) Animate the transition (defaults to false)     * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)     * @param {Function} onComplete (optional) Function to call when animation completes     * @param {String} easing (optional) Easing method to use (defaults to easeOut)     * @return {Ext.Element} this     */    autoHeight : function(animate, duration, onComplete, easing){        var oldHeight = this.getHeight();        this.clip();        this.setHeight(1); // force clipping        setTimeout(function(){            var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari            if(!animate){                this.setHeight(height);                this.unclip();                if(typeof onComplete == "function"){                    onComplete();                }            }else{                this.setHeight(oldHeight); // restore original height                this.setHeight(height, animate, duration, function(){                    this.unclip();                    if(typeof onComplete == "function") onComplete();                }.createDelegate(this), easing);            }        }.createDelegate(this), 0);        return this;    },    /**     * Returns true if this element is an ancestor of the passed element     * @param {HTMLElement/String} el The element to check     * @return {Boolean} True if this element is an ancestor of el, else false     */    contains : function(el){        if(!el){return false;}        return D.isAncestor(this.dom, el.dom ? el.dom : el);    },    /**     * Checks whether the element is currently visible using both visibility and display properties.     * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)     * @return {Boolean} True if the element is currently visible, else false     */    isVisible : function(deep) {        var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");        if(deep !== true || !vis){            return vis;        }        var p = this.dom.parentNode;        while(p && p.tagName.toLowerCase() != "body"){            if(!Ext.fly(p, '_isVisible').isVisible()){                return false;            }            p = p.parentNode;        }        return true;    },    /**     * Creates a {@link Ext.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).     * @param {String} selector The CSS selector     * @param {Boolean} unique (optional) True to create a unique Ext.Element for each child (defaults to false, which creates a single shared flyweight object)     * @return {CompositeElement/CompositeElementLite} The composite element     */    select : function(selector, unique){        return El.select(selector, unique, this.dom);    },    /**     * Selects child nodes based on the passed CSS selector (the selector should not contain an id).     * @param {String} selector The CSS selector     * @return {Array} An array of the matched nodes     */    query : function(selector){        return Ext.DomQuery.select(selector, this.dom);    },    /**     * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).     * @param {String} selector The CSS selector     * @param {Boolean} returnDom (optional) True to return the DOM node instead of Ext.Element (defaults to false)     * @return {HTMLElement/Ext.Element} The child Ext.Element (or DOM node if returnDom = true)     */    child : function(selector, returnDom){        var n = Ext.DomQuery.selectNode(selector, this.dom);        return returnDom ? n : Ext.get(n);    },    /**     * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).     * @param {String} selector The CSS selector     * @param {Boolean} returnDom (optional) True to return the DOM node instead of Ext.Element (defaults to false)     * @return {HTMLElement/Ext.Element} The child Ext.Element (or DOM node if returnDom = true)     */    down : function(selector, returnDom){        var n = Ext.DomQuery.selectNode(" > " + selector, this.dom);        return returnDom ? n : Ext.get(n);    },    /**     * Initializes a {@link Ext.dd.DD} drag drop object for this element.     * @param {String} group The group the DD object is member of     * @param {Object} config The DD config object     * @param {Object} overrides An object containing methods to override/implement on the DD object     * @return {Ext.dd.DD} The DD object     */    initDD : function(group, config, overrides){        var dd = new Ext.dd.DD(Ext.id(this.dom), group, config);        return Ext.apply(dd, overrides);    },    /**     * Initializes a {@link Ext.dd.DDProxy} object for this element.     * @param {String} group The group the DDProxy object is member of     * @param {Object} config The DDProxy config object     * @param {Object} overrides An object containing methods to override/implement on the DDProxy object     * @return {Ext.dd.DDProxy} The DDProxy object     */    initDDProxy : function(group, config, overrides){        var dd = new Ext.dd.DDProxy(Ext.id(this.dom), group, config);        return Ext.apply(dd, overrides);    },    /**     * Initializes a {@link Ext.dd.DDTarget} object for this element.     * @param {String} group The group the DDTarget object is member of     * @param {Object} config The DDTarget config object     * @param {Object} overrides An object containing methods to override/implement on the DDTarget object     * @return {Ext.dd.DDTarget} The DDTarget object     */    initDDTarget : function(group, config, overrides){        var dd = new Ext.dd.DDTarget(Ext.id(this.dom), group, config);        return Ext.apply(dd, overrides);    },    /**     * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use     * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.     * @param {Boolean} visible Whether the element is visible     * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object     * @return {Ext.Element} this     */     setVisible : function(visible, animate){        if(!animate || !A){            if(this.visibilityMode == El.DISPLAY){                this.setDisplayed(visible);            }else{                this.fixDisplay();                this.dom.style.visibility = visible ? "visible" : "hidden";            }        }else{            // closure for composites            var dom = this.dom;            var visMode = this.visibilityMode;            if(visible){                this.setOpacity(.01);                this.setVisible(true);            }            this.anim({opacity: { to: (visible?1:0) }},                  this.preanim(arguments, 1),                  null, .35, 'easeIn', function(){                     if(!visible){                         if(visMode == El.DISPLAY){                             dom.style.display = "none";                         }else{                             dom.style.visibility = "hidden";                         }                         Ext.get(dom).setOpacity(1);                     }                 });        }        return this;    },    /**     * Returns true if display is not "none"     * @return {Boolean}     */    isDisplayed : function() {        return this.getStyle("display") != "none";    },    /**     * Toggles the element's visibility or display, depending on visibility mode.     * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人免费在线观看入口| 中文字幕巨乱亚洲| 粗大黑人巨茎大战欧美成人| 亚洲一区二区三区精品在线| 国产日韩v精品一区二区| 欧美日韩精品一区二区| 成人精品gif动图一区| 激情欧美一区二区| 午夜精品一区二区三区电影天堂| 中文字幕一区二区三区蜜月 | 色老汉一区二区三区| 久久av资源网| 日韩电影在线免费观看| 亚洲美女偷拍久久| 国产精品毛片大码女人| 亚洲精品一区在线观看| 欧美一区二区免费视频| 欧美系列在线观看| 色视频欧美一区二区三区| av中文字幕一区| 99视频一区二区三区| 激情六月婷婷久久| 日韩av中文在线观看| 亚洲国产视频一区| 亚洲日本中文字幕区| 亚洲欧洲av在线| 国产精品污www在线观看| 久久久国产一区二区三区四区小说 | 蜜臀a∨国产成人精品| 一区2区3区在线看| 亚洲天堂精品在线观看| 国产精品伦一区二区三级视频| 欧美精品一区二区三区在线| 欧美一区二区性放荡片| 欧美一级日韩一级| 欧美一级黄色录像| 日韩女优毛片在线| 精品对白一区国产伦| 日韩一区二区在线看片| 欧美一级免费观看| 日韩精品一区二区三区在线| 欧美va日韩va| 久久久国际精品| 国产精品久久综合| 亚洲靠逼com| 亚洲午夜免费视频| 视频一区在线播放| 麻豆精品精品国产自在97香蕉| 免费在线一区观看| 日韩不卡一区二区| 精品无人区卡一卡二卡三乱码免费卡 | 亚洲免费电影在线| 亚洲国产一区二区三区青草影视| 亚洲成人动漫精品| 免费精品视频在线| 国产美女精品人人做人人爽| 成人久久久精品乱码一区二区三区| 成人黄色国产精品网站大全在线免费观看 | 91在线观看美女| 欧美日韩国产另类一区| 日韩一区二区电影网| 国产日韩欧美综合在线| 亚洲色图视频网站| 视频一区视频二区中文| 国产精品一二三四| 91成人在线免费观看| 欧美一区二区三区喷汁尤物| 久久蜜桃一区二区| 一区二区三区日韩精品视频| 蜜臀久久99精品久久久画质超高清| 国产一区二区三区av电影| av资源网一区| 欧美一级日韩一级| 国产精品欧美一区喷水| 午夜精品福利久久久| 国产一区不卡精品| 欧美无乱码久久久免费午夜一区| 欧美一区二区精美| 日本一区二区免费在线观看视频 | 色哦色哦哦色天天综合| 欧美一区二区精品| 中文字幕一区二区三| 视频一区视频二区中文字幕| 国产.欧美.日韩| 欧美老年两性高潮| 国产精品女主播av| 奇米影视一区二区三区| 成人高清视频在线观看| 欧美一区二区三区不卡| 中文字幕一区二区5566日韩| 日韩二区三区在线观看| 麻豆精品视频在线观看免费| 国产激情一区二区三区桃花岛亚洲| 成人高清伦理免费影院在线观看| 欧美日韩不卡在线| 18成人在线观看| 黄色精品一二区| 欧美日韩国产在线播放网站| 国产精品久久久一本精品| 日韩成人dvd| 在线观看国产一区二区| 国产午夜亚洲精品不卡| 日产国产欧美视频一区精品 | 在线观看av一区| www久久精品| 午夜激情久久久| 99久久伊人网影院| 日韩精品一二三区| 91麻豆文化传媒在线观看| 久久久久久免费网| 免费观看在线色综合| 欧美亚洲免费在线一区| 国产精品久久久久久福利一牛影视| 麻豆精品一区二区综合av| 欧洲生活片亚洲生活在线观看| 国产精品青草综合久久久久99| 激情综合网天天干| 亚洲一卡二卡三卡四卡| 精品国产网站在线观看| 亚洲午夜av在线| 91亚洲精品久久久蜜桃| 国产精品国产自产拍高清av| 国产v综合v亚洲欧| 久久理论电影网| 精品一区二区三区不卡| 日韩一级片在线观看| 肉色丝袜一区二区| 欧美日韩国产免费| 石原莉奈在线亚洲二区| 欧美日本韩国一区二区三区视频| 亚洲精品免费在线播放| 色嗨嗨av一区二区三区| 亚洲主播在线观看| 欧美日韩精品是欧美日韩精品| 亚洲第一综合色| 91精品国产综合久久久蜜臀粉嫩| 亚洲一区免费视频| 欧美精选在线播放| 日本特黄久久久高潮| 日韩午夜电影在线观看| 蜜桃一区二区三区四区| 精品国产三级电影在线观看| 国内精品免费在线观看| 久久综合九色综合97_久久久| 国产一区二区三区观看| 欧美高清在线精品一区| 99视频在线精品| 亚洲一区精品在线| 亚洲欧美二区三区| 看国产成人h片视频| 欧美一区二区精品久久911| 蜜臀国产一区二区三区在线播放 | 在线观看成人小视频| 亚洲国产人成综合网站| 欧美巨大另类极品videosbest| 视频一区视频二区中文| 日韩欧美www| 国产乱码精品一区二区三区忘忧草| 国产日韩欧美a| 在线免费观看日韩欧美| 爽好久久久欧美精品| 欧美不卡视频一区| 成人免费视频播放| 亚洲精品国产第一综合99久久| 欧美日韩一区视频| 九九**精品视频免费播放| 中文一区一区三区高中清不卡| 91污在线观看| 奇米在线7777在线精品| 久久久久久夜精品精品免费| 色婷婷av一区| 久久精品噜噜噜成人av农村| 欧美国产精品中文字幕| 欧美唯美清纯偷拍| 国产精品69毛片高清亚洲| 亚洲精品高清在线| 日韩精品一区二区三区四区视频| av一二三不卡影片| 精品视频在线免费观看| 亚洲国产成人一区二区三区| 91视视频在线观看入口直接观看www | 国产精品久久福利| 欧美日韩电影一区| 从欧美一区二区三区| 亚洲3atv精品一区二区三区| 国产午夜精品一区二区三区四区| 欧洲精品一区二区| 国产精品一二三四| 天天综合网 天天综合色| 国产日韩精品视频一区| 777亚洲妇女| 色综合天天在线| 国产一区视频导航| 午夜视频一区在线观看| 国产精品你懂的| 精品欧美久久久| 欧美高清视频在线高清观看mv色露露十八 | 亚洲成人一区二区| 中文字幕欧美一| 26uuu欧美|