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

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

?? element.js

?? ext-2.3.0
?? JS
?? 第 1 頁 / 共 5 頁
字號:
     * A delayed, one-time listener that auto stops the event and adds a custom argument (forumId) to the     * options object. The options object is available as the third parameter in the handler function.<div style="margin: 5px 20px 20px;">     * Code:<pre><code>el.on('click', this.onClick, this, {    single: true,    delay: 100,    stopEvent : true,    forumId: 4});</code></pre></p>     * <p>     * <b>Attaching multiple handlers in 1 call</b><br>      * The method also allows for a single argument to be passed which is a config object containing properties     * which specify multiple handlers.</p>     * <p>     * Code:<pre><code></p>el.on({    'click' : {        fn: this.onClick,        scope: this,        delay: 100    },    'mouseover' : {        fn: this.onMouseOver,        scope: this    },    'mouseout' : {        fn: this.onMouseOut,        scope: this    }});</code></pre>     * <p>     * Or a shorthand syntax:<br>     * Code:<pre><code></p>el.on({    'click' : this.onClick,    'mouseover' : this.onMouseOver,    'mouseout' : this.onMouseOut,    scope: this});</code></pre>     */    addListener : function(eventName, fn, scope, options){        Ext.EventManager.on(this.dom,  eventName, fn, scope || this, options);    },    /**     * Removes an event handler from this element.  The shorthand version {@link #un} is equivalent.  Example:     * <pre><code>el.removeListener('click', this.handlerFn);// orel.un('click', this.handlerFn);</code></pre>     * @param {String} eventName the type of event to remove     * @param {Function} fn the method the event invokes     * @param {Object} scope (optional) The scope (The <tt>this</tt> reference) of the handler function. Defaults     * to this Element.     * @return {Ext.Element} this     */    removeListener : function(eventName, fn, scope){        Ext.EventManager.removeListener(this.dom,  eventName, fn, scope || this);        return this;    },    /**     * Removes all previous added listeners from this element     * @return {Ext.Element} this     */    removeAllListeners : function(){        Ext.EventManager.removeAll(this.dom);        return this;    },    /**     * Create an event handler on this element such that when the event fires and is handled by this element,     * it will be relayed to another object (i.e., fired again as if it originated from that object instead).     * @param {String} eventName The type of event to relay     * @param {Object} object Any object that extends {@link Ext.util.Observable} that will provide the context     * for firing the relayed event     */    relayEvent : function(eventName, observable){        this.on(eventName, function(e){            observable.fireEvent(eventName, e);        });    },    /**     * Set the opacity of the element     * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc     * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object     * @return {Ext.Element} this     */     setOpacity : function(opacity, animate){        if(!animate || !A){            var s = this.dom.style;            if(Ext.isIE){                s.zoom = 1;                s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +                           (opacity == 1 ? "" : " alpha(opacity=" + opacity * 100 + ")");            }else{                s.opacity = opacity;            }        }else{            this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');        }        return this;    },    /**     * Gets the left X coordinate     * @param {Boolean} local True to get the local css position instead of page coordinate     * @return {Number}     */    getLeft : function(local){        if(!local){            return this.getX();        }else{            return parseInt(this.getStyle("left"), 10) || 0;        }    },    /**     * Gets the right X coordinate of the element (element X position + element width)     * @param {Boolean} local True to get the local css position instead of page coordinate     * @return {Number}     */    getRight : function(local){        if(!local){            return this.getX() + this.getWidth();        }else{            return (this.getLeft(true) + this.getWidth()) || 0;        }    },    /**     * Gets the top Y coordinate     * @param {Boolean} local True to get the local css position instead of page coordinate     * @return {Number}     */    getTop : function(local) {        if(!local){            return this.getY();        }else{            return parseInt(this.getStyle("top"), 10) || 0;        }    },    /**     * Gets the bottom Y coordinate of the element (element Y position + element height)     * @param {Boolean} local True to get the local css position instead of page coordinate     * @return {Number}     */    getBottom : function(local){        if(!local){            return this.getY() + this.getHeight();        }else{            return (this.getTop(true) + this.getHeight()) || 0;        }    },    /**    * Initializes positioning on this element. If a desired position is not passed, it will make the    * the element positioned relative IF it is not already positioned.    * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"    * @param {Number} zIndex (optional) The zIndex to apply    * @param {Number} x (optional) Set the page X position    * @param {Number} y (optional) Set the page Y position    */    position : function(pos, zIndex, x, y){        if(!pos){           if(this.getStyle('position') == 'static'){               this.setStyle('position', 'relative');           }        }else{            this.setStyle("position", pos);        }        if(zIndex){            this.setStyle("z-index", zIndex);        }        if(x !== undefined && y !== undefined){            this.setXY([x, y]);        }else if(x !== undefined){            this.setX(x);        }else if(y !== undefined){            this.setY(y);        }    },    /**    * Clear positioning back to the default when the document was loaded    * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.    * @return {Ext.Element} this     */    clearPositioning : function(value){        value = value ||'';        this.setStyle({            "left": value,            "right": value,            "top": value,            "bottom": value,            "z-index": "",            "position" : "static"        });        return this;    },    /**    * Gets an object with all CSS positioning properties. Useful along with setPostioning to get    * snapshot before performing an update and then restoring the element.    * @return {Object}    */    getPositioning : function(){        var l = this.getStyle("left");        var t = this.getStyle("top");        return {            "position" : this.getStyle("position"),            "left" : l,            "right" : l ? "" : this.getStyle("right"),            "top" : t,            "bottom" : t ? "" : this.getStyle("bottom"),            "z-index" : this.getStyle("z-index")        };    },    /**     * Gets the width of the border(s) for the specified side(s)     * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,     * passing lr would get the border (l)eft width + the border (r)ight width.     * @return {Number} The width of the sides passed added together     */    getBorderWidth : function(side){        return this.addStyles(side, El.borders);    },    /**     * Gets the width of the padding(s) for the specified side(s)     * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,     * passing lr would get the padding (l)eft + the padding (r)ight.     * @return {Number} The padding of the sides passed added together     */    getPadding : function(side){        return this.addStyles(side, El.paddings);    },    /**    * Set positioning with an object returned by getPositioning().    * @param {Object} posCfg    * @return {Ext.Element} this     */    setPositioning : function(pc){        this.applyStyles(pc);        if(pc.right == "auto"){            this.dom.style.right = "";        }        if(pc.bottom == "auto"){            this.dom.style.bottom = "";        }        return this;    },    // private    fixDisplay : function(){        if(this.getStyle("display") == "none"){            this.setStyle("visibility", "hidden");            this.setStyle("display", this.originalDisplay); // first try reverting to default            if(this.getStyle("display") == "none"){ // if that fails, default to block                this.setStyle("display", "block");            }        }    },    // private	setOverflow : function(v){    	if(v=='auto' && Ext.isMac && Ext.isGecko2){ // work around stupid FF 2.0/Mac scroll bar bug    		this.dom.style.overflow = 'hidden';        	(function(){this.dom.style.overflow = 'auto';}).defer(1, this);    	}else{    		this.dom.style.overflow = v;    	}	},    /**     * Quick set left and top adding default units     * @param {String} left The left CSS property value     * @param {String} top The top CSS property value     * @return {Ext.Element} this     */     setLeftTop : function(left, top){        this.dom.style.left = this.addUnits(left);        this.dom.style.top = this.addUnits(top);        return this;    },    /**     * Move this element relative to its current position.     * @param {String} direction Possible values are: "l" (or "left"), "r" (or "right"), "t" (or "top", or "up"), "b" (or "bottom", or "down").     * @param {Number} distance How far to move the element in pixels     * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object     * @return {Ext.Element} this     */     move : function(direction, distance, animate){        var xy = this.getXY();        direction = direction.toLowerCase();        switch(direction){            case "l":            case "left":                this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));                break;           case "r":           case "right":                this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));                break;           case "t":           case "top":           case "up":                this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));                break;           case "b":           case "bottom":           case "down":                this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));                break;        }        return this;    },    /**     *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove     * @return {Ext.Element} 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")           };        

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久青草国产手机看片福利盒子| 国内精品免费在线观看| 97se亚洲国产综合自在线不卡| 国产精品美女久久久久久久网站| 国产成人免费在线视频| 中文字幕av一区二区三区免费看| 国产不卡视频一区| 亚洲欧美偷拍三级| 欧美影院精品一区| 日韩在线卡一卡二| 久久午夜羞羞影院免费观看| 成人午夜av影视| 亚洲女厕所小便bbb| 欧美性高清videossexo| 亚洲国产岛国毛片在线| 亚洲人成伊人成综合网小说| 免费成人在线观看视频| 精品一区二区久久| 亚洲gay无套男同| 中文字幕一区在线| 亚洲欧美一区二区三区极速播放| xfplay精品久久| 久久精品亚洲乱码伦伦中文| 国产精品传媒视频| 国产九色sp调教91| 国产福利不卡视频| 大陆成人av片| 日韩成人午夜电影| 蜜臀99久久精品久久久久久软件| 国产精品自拍毛片| 91麻豆精品91久久久久久清纯 | 亚洲丰满少妇videoshd| 日韩三级免费观看| 久久99日本精品| 看电影不卡的网站| 精品在线视频一区| 在线精品视频一区二区三四 | 一级日本不卡的影视| 亚洲综合在线观看视频| 国产综合久久久久久久久久久久| 成人性生交大片免费看中文| 91小视频免费看| 国产福利精品导航| 久久综合九色综合97婷婷 | 午夜影院久久久| 中文字幕+乱码+中文字幕一区| 色屁屁一区二区| 成人性生交大片免费看中文| 美国av一区二区| 一区二区在线看| 亚洲国产精品黑人久久久| 日韩视频在线观看一区二区| 欧美性猛交xxxxxxxx| 成人免费高清在线| 国产原创一区二区| 老司机精品视频导航| 亚洲线精品一区二区三区| 国产精品国产成人国产三级| 久久亚洲精品小早川怜子| 欧美一区二区免费观在线| 91蝌蚪porny| 成熟亚洲日本毛茸茸凸凹| 久久99在线观看| 蜜桃视频免费观看一区| 亚洲国产成人av| 亚洲综合一二区| 亚洲三级电影网站| 中文字幕视频一区二区三区久| 久久久精品免费观看| 精品日韩成人av| 欧美大胆人体bbbb| 欧美tickling挠脚心丨vk| 日韩欧美国产高清| 欧美一区二区三级| 日韩色在线观看| 日韩免费观看高清完整版在线观看 | 久久久久一区二区三区四区| 日韩精品在线网站| 久久一夜天堂av一区二区三区| 日韩一卡二卡三卡| 精品国产91乱码一区二区三区| 日韩欧美视频在线| 亚洲精品在线观看网站| 国产亚洲欧美色| 国产精品初高中害羞小美女文| 综合欧美亚洲日本| 亚洲一区精品在线| 日本视频免费一区| 国内国产精品久久| 99精品视频免费在线观看| 成人黄色av电影| 91亚洲精品一区二区乱码| 在线免费一区三区| 欧美一区日韩一区| 久久久蜜桃精品| 中文字幕在线观看不卡| 一区二区三区视频在线看| 亚洲国产综合91精品麻豆| 视频一区二区不卡| 黄色日韩网站视频| 岛国一区二区在线观看| 色综合色狠狠综合色| 777精品伊人久久久久大香线蕉| 91精品麻豆日日躁夜夜躁| 久久久久亚洲综合| 亚洲女人的天堂| 蜜臀91精品一区二区三区| 国产麻豆成人传媒免费观看| 97se亚洲国产综合自在线| 3d成人h动漫网站入口| 精品对白一区国产伦| 亚洲欧美视频在线观看| 蜜臀av一区二区在线观看| 国产毛片精品国产一区二区三区| av一区二区不卡| 日韩一区二区在线看片| 18成人在线观看| 久久丁香综合五月国产三级网站| 波多野结衣中文字幕一区| 91精品国产色综合久久不卡电影 | 3751色影院一区二区三区| 国产日韩欧美精品电影三级在线| 一区二区三区加勒比av| 极品尤物av久久免费看| 欧美午夜精品久久久| 精品国产乱码久久久久久蜜臀| 亚洲欧美自拍偷拍| 国产一区二区三区黄视频| 欧美亚洲禁片免费| 国产精品国产三级国产普通话99 | 亚洲第一狼人社区| 国产精品一区二区久激情瑜伽 | 成人h动漫精品一区二区| 9191国产精品| 国产情人综合久久777777| 日韩福利电影在线| 色综合天天天天做夜夜夜夜做| 久久这里只有精品视频网| 亚洲一级二级在线| 成人av资源在线| 久久先锋资源网| 蜜桃av噜噜一区二区三区小说| 91首页免费视频| 国产精品久久久久久久午夜片| 久久精品国产99| 欧美精品在线观看播放| 亚洲三级免费观看| 91在线一区二区| 久久久亚洲综合| 久久99国产精品久久99| 8x8x8国产精品| 亚洲大片在线观看| 欧美视频中文字幕| 亚洲男人的天堂在线观看| 成人黄色电影在线| 国产色产综合产在线视频| 韩国一区二区三区| 日韩欧美的一区| 久久国产生活片100| 91麻豆精品91久久久久同性| 视频在线观看91| 欧美夫妻性生活| 日本不卡免费在线视频| 欧美电影在哪看比较好| 日韩av在线发布| 欧美精品黑人性xxxx| 日韩国产在线一| 4438x亚洲最大成人网| 蜜桃av一区二区| 久久奇米777| 成人午夜碰碰视频| 中文字幕在线一区二区三区| 成人av在线网| 亚洲精品欧美激情| 欧亚洲嫩模精品一区三区| 亚洲国产va精品久久久不卡综合| 欧美日韩国产高清一区二区| 免费一区二区视频| 久久亚洲一级片| 成人精品免费看| 亚洲美女视频在线观看| 欧美视频在线播放| 老司机精品视频一区二区三区| 久久久精品欧美丰满| 成人av网站在线| 亚洲午夜av在线| 日韩午夜激情av| 国产91精品一区二区麻豆亚洲| 亚洲人成影院在线观看| 欧美日本高清视频在线观看| 久久9热精品视频| 国产精品无人区| 欧美日韩黄色影视| 久久精品国产一区二区三| 国产校园另类小说区| 欧美亚洲免费在线一区| 极品美女销魂一区二区三区| 日本一区二区三区在线不卡| 欧洲日韩一区二区三区| 激情综合色播激情啊|