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

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

?? jquery-plugins.js

?? ext js demo ext學習資料
?? JS
?? 第 1 頁 / 共 3 頁
字號:
/*
 * Ext - JS Library 1.0 Alpha 2
 * Copyright(c) 2006-2007, Jack Slocum.
 */

/* * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses. * * $LastChangedDate$ * $Rev$ */jQuery.fn._height = jQuery.fn.height;jQuery.fn._width  = jQuery.fn.width;/** * If used on document, returns the document's height (innerHeight) * If used on window, returns the viewport's (window) height * See core docs on height() to see what happens when used on an element. * * @example $("#testdiv").height() * @result 200 * * @example $(document).height() * @result 800 * * @example $(window).height() * @result 400 * * @name height * @type Object * @cat Plugins/Dimensions */jQuery.fn.height = function() {	if ( this[0] == window )		return self.innerHeight ||			jQuery.boxModel && document.documentElement.clientHeight ||			document.body.clientHeight;	if ( this[0] == document )		return Math.max( document.body.scrollHeight, document.body.offsetHeight );	return this._height(arguments[0]);};/** * If used on document, returns the document's width (innerWidth) * If used on window, returns the viewport's (window) width * See core docs on height() to see what happens when used on an element. * * @example $("#testdiv").width() * @result 200 * * @example $(document).width() * @result 800 * * @example $(window).width() * @result 400 * * @name width * @type Object * @cat Plugins/Dimensions */jQuery.fn.width = function() {	if ( this[0] == window )		return self.innerWidth ||			jQuery.boxModel && document.documentElement.clientWidth ||			document.body.clientWidth;	if ( this[0] == document )		return Math.max( document.body.scrollWidth, document.body.offsetWidth );	return this._width(arguments[0]);};/** * Returns the inner height value (without border) for the first matched element. * If used on document, returns the document's height (innerHeight) * If used on window, returns the viewport's (window) height * * @example $("#testdiv").innerHeight() * @result 800 * * @name innerHeight * @type Number * @cat Plugins/Dimensions */jQuery.fn.innerHeight = function() {	return this[0] == window || this[0] == document ?		this.height() :		this.css('display') != 'none' ?		 	this[0].offsetHeight - (parseInt(this.css("borderTopWidth")) || 0) - (parseInt(this.css("borderBottomWidth")) || 0) :			this.height() + (parseInt(this.css("paddingTop")) || 0) + (parseInt(this.css("paddingBottom")) || 0);};/** * Returns the inner width value (without border) for the first matched element. * If used on document, returns the document's Width (innerWidth) * If used on window, returns the viewport's (window) width * * @example $("#testdiv").innerWidth() * @result 1000 * * @name innerWidth * @type Number * @cat Plugins/Dimensions */jQuery.fn.innerWidth = function() {	return this[0] == window || this[0] == document ?		this.width() :		this.css('display') != 'none' ?			this[0].offsetWidth - (parseInt(this.css("borderLeftWidth")) || 0) - (parseInt(this.css("borderRightWidth")) || 0) :			this.height() + (parseInt(this.css("paddingLeft")) || 0) + (parseInt(this.css("paddingRight")) || 0);};/** * Returns the outer height value (including border) for the first matched element. * Cannot be used on document or window. * * @example $("#testdiv").outerHeight() * @result 1000 * * @name outerHeight * @type Number * @cat Plugins/Dimensions */jQuery.fn.outerHeight = function() {	return this[0] == window || this[0] == document ?		this.height() :		this.css('display') != 'none' ?			this[0].offsetHeight :			this.height() + (parseInt(this.css("borderTopWidth")) || 0) + (parseInt(this.css("borderBottomWidth")) || 0)				+ (parseInt(this.css("paddingTop")) || 0) + (parseInt(this.css("paddingBottom")) || 0);};/** * Returns the outer width value (including border) for the first matched element. * Cannot be used on document or window. * * @example $("#testdiv").outerWidth() * @result 1000 * * @name outerWidth * @type Number * @cat Plugins/Dimensions */jQuery.fn.outerWidth = function() {	return this[0] == window || this[0] == document ?		this.width() :		this.css('display') != 'none' ?			this[0].offsetWidth :			this.height() + (parseInt(this.css("borderLeftWidth")) || 0) + (parseInt(this.css("borderRightWidth")) || 0)				+ (parseInt(this.css("paddingLeft")) || 0) + (parseInt(this.css("paddingRight")) || 0);};/** * Returns how many pixels the user has scrolled to the right (scrollLeft). * Works on containers with overflow: auto and window/document. * * @example $("#testdiv").scrollLeft() * @result 100 * * @name scrollLeft * @type Number * @cat Plugins/Dimensions */jQuery.fn.scrollLeft = function() {	if ( this[0] == window || this[0] == document )		return self.pageXOffset ||			jQuery.boxModel && document.documentElement.scrollLeft ||			document.body.scrollLeft;	return this[0].scrollLeft;};/** * Returns how many pixels the user has scrolled to the bottom (scrollTop). * Works on containers with overflow: auto and window/document. * * @example $("#testdiv").scrollTop() * @result 100 * * @name scrollTop * @type Number * @cat Plugins/Dimensions */jQuery.fn.scrollTop = function() {	if ( this[0] == window || this[0] == document )		return self.pageYOffset ||			jQuery.boxModel && document.documentElement.scrollTop ||			document.body.scrollTop;	return this[0].scrollTop;};/** * Returns the location of the element in pixels from the top left corner of the viewport. * * For accurate readings make sure to use pixel values for margins, borders and padding. * * @example $("#testdiv").offset() * @result { top: 100, left: 100, scrollTop: 10, scrollLeft: 10 } * * @example $("#testdiv").offset({ scroll: false }) * @result { top: 90, left: 90 } * * @example var offset = {} * $("#testdiv").offset({ scroll: false }, offset) * @result offset = { top: 90, left: 90 } * * @name offset * @param Object options A hash of options describing what should be included in the final calculations of the offset. *                       The options include: *                           margin: Should the margin of the element be included in the calculations? True by default. *                                   If set to false the margin of the element is subtracted from the total offset. *                           border: Should the border of the element be included in the calculations? True by default. *                                   If set to false the border of the element is subtracted from the total offset. *                           padding: Should the padding of the element be included in the calculations? False by default. *                                    If set to true the padding of the element is added to the total offset. *                           scroll: Should the scroll offsets of the parent elements be included in the calculations? *                                   True by default. When true, it adds the total scroll offsets of all parents to the *                                   total offset and also adds two properties to the returned object, scrollTop and *                                   scrollLeft. If set to false the scroll offsets of parent elements are ignored. *                                   If scroll offsets are not needed, set to false to get a performance boost. * @param Object returnObject An object to store the return value in, so as not to break the chain. If passed in the *                            chain will not be broken and the result will be assigned to this object. * @type Object * @cat Plugins/Dimensions * @author Brandon Aaron (brandon.aaron@gmail.com || http://brandonaaron.net) */jQuery.fn.offset = function(options, returnObject) {	var x = 0, y = 0, elem = this[0], parent = this[0], sl = 0, st = 0, options = jQuery.extend({ margin: true, border: true, padding: false, scroll: true }, options || {});	do {		x += parent.offsetLeft || 0;		y += parent.offsetTop  || 0;		// Mozilla and IE do not add the border		if (jQuery.browser.mozilla || jQuery.browser.msie) {			// get borders			var bt = parseInt(jQuery.css(parent, 'borderTopWidth')) || 0;			var bl = parseInt(jQuery.css(parent, 'borderLeftWidth')) || 0;			// add borders to offset			x += bl;			y += bt;			// Mozilla removes the border if the parent has overflow property other than visible			if (jQuery.browser.mozilla && parent != elem && jQuery.css(parent, 'overflow') != 'visible') {				x += bl;				y += bt;			}		}		var op = parent.offsetParent;		if (op && (op.tagName == 'BODY' || op.tagName == 'HTML')) {			// Safari doesn't add the body margin for elments positioned with static or relative			if (jQuery.browser.safari && jQuery.css(parent, 'position') != 'absolute') {				x += parseInt(jQuery.css(op, 'marginLeft')) || 0;				y += parseInt(jQuery.css(op, 'marginTop'))  || 0;			}			// Exit the loop			break;		}		if (options.scroll) {			// Need to get scroll offsets in-between offsetParents			do {				sl += parent.scrollLeft || 0;				st += parent.scrollTop  || 0;				parent = parent.parentNode;				// Mozilla removes the border if the parent has overflow property other than visible				if (jQuery.browser.mozilla && parent != elem && parent != op && parent.style && jQuery.css(parent, 'overflow') != 'visible') {					y += parseInt(jQuery.css(parent, 'borderTopWidth')) || 0;					x += parseInt(jQuery.css(parent, 'borderLeftWidth')) || 0;				}			} while (parent != op);		} else {			parent = parent.offsetParent;		}	} while (parent);	if ( !options.margin) {		x -= parseInt(jQuery.css(elem, 'marginLeft')) || 0;		y -= parseInt(jQuery.css(elem, 'marginTop'))  || 0;	}	// Safari and Opera do not add the border for the element	if ( options.border && (jQuery.browser.safari || jQuery.browser.opera) ) {		x += parseInt(jQuery.css(elem, 'borderLeftWidth')) || 0;		y += parseInt(jQuery.css(elem, 'borderTopWidth'))  || 0;	} else if ( !options.border && !(jQuery.browser.safari || jQuery.browser.opera) ) {		x -= parseInt(jQuery.css(elem, 'borderLeftWidth')) || 0;		y -= parseInt(jQuery.css(elem, 'borderTopWidth'))  || 0;	}	if ( options.padding ) {		x += parseInt(jQuery.css(elem, 'paddingLeft')) || 0;		y += parseInt(jQuery.css(elem, 'paddingTop'))  || 0;	}	// Opera thinks offset is scroll offset for display: inline elements	if (options.scroll && jQuery.browser.opera && jQuery.css(elem, 'display') == 'inline') {		sl -= elem.scrollLeft || 0;		st -= elem.scrollTop  || 0;	}	var returnValue = options.scroll ? { top: y - st, left: x - sl, scrollTop:  st, scrollLeft: sl }									: { top: y, left: x };	if (returnObject) { jQuery.extend(returnObject, returnValue); return this; }	else              { return returnValue; }};// FORM PLUGIN/*

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产清纯白嫩初高生在线观看91 | 极品少妇xxxx精品少妇偷拍| 欧美三级日本三级少妇99| 亚洲午夜成aⅴ人片| 欧美午夜精品久久久久久超碰| 亚洲www啪成人一区二区麻豆| 在线播放国产精品二区一二区四区| 日韩在线a电影| 欧美精品一区二区蜜臀亚洲| 国产99一区视频免费 | 亚洲激情在线播放| 欧美亚洲国产bt| 日本v片在线高清不卡在线观看| 欧美videofree性高清杂交| 国产成人自拍在线| 一区二区三区不卡视频在线观看| 欧美另类高清zo欧美| 蜜臀久久99精品久久久久久9| 久久九九久精品国产免费直播| av一区二区三区| 亚洲第一搞黄网站| 久久综合成人精品亚洲另类欧美| www.欧美亚洲| 日日噜噜夜夜狠狠视频欧美人| 久久久久国产精品免费免费搜索| 色一情一乱一乱一91av| 奇米在线7777在线精品| 亚洲国产激情av| 日韩一卡二卡三卡| av一二三不卡影片| 蜜桃传媒麻豆第一区在线观看| 国产精品久久久久国产精品日日| 欧美视频在线一区| 国产成人a级片| 偷偷要91色婷婷| 欧美激情一区二区三区四区| 欧美日韩精品一区二区天天拍小说| 韩日精品视频一区| 亚洲国产日韩在线一区模特| 久久综合成人精品亚洲另类欧美| 欧美在线观看你懂的| 国产黄人亚洲片| 日韩一区欧美二区| 中文字幕日韩欧美一区二区三区| 欧美成人性福生活免费看| 欧美在线三级电影| 成人午夜在线播放| 精品综合免费视频观看| 亚洲国产精品尤物yw在线观看| 国产午夜精品理论片a级大结局| 制服丝袜一区二区三区| 色婷婷av一区二区三区软件 | 樱花草国产18久久久久| 久久精品免费在线观看| 56国语精品自产拍在线观看| 91丨porny丨国产入口| 国内久久婷婷综合| 日日夜夜精品视频免费 | 日韩激情视频网站| 亚洲精品久久7777| 亚洲欧美综合在线精品| 欧美激情资源网| www久久精品| 欧美不卡一区二区三区| 欧美精选一区二区| 欧美午夜一区二区三区免费大片| 91一区二区在线| 99re在线精品| 成人av片在线观看| youjizz国产精品| 丁香亚洲综合激情啪啪综合| 国产二区国产一区在线观看| 国产最新精品精品你懂的| 久久成人久久鬼色| 激情文学综合丁香| 国产专区欧美精品| 国内精品在线播放| 国产精品资源在线看| 国产综合久久久久久鬼色| 久草这里只有精品视频| 国产精品一级在线| 国产成人日日夜夜| a级高清视频欧美日韩| 成人av在线一区二区三区| 99麻豆久久久国产精品免费优播| www.日韩精品| 欧美综合一区二区三区| 欧美日韩国产精品自在自线| 91精品麻豆日日躁夜夜躁| 制服丝袜亚洲网站| 欧美成人女星排名| 久久精品人人做人人爽97| 国产精品短视频| 伊人色综合久久天天| 亚洲大片免费看| 日本不卡在线视频| 国产美女av一区二区三区| 丁香六月综合激情| 在线亚洲欧美专区二区| 欧美乱熟臀69xxxxxx| 欧美成人一级视频| 国产精品不卡在线观看| 亚洲一级电影视频| 美女视频网站黄色亚洲| 国产白丝精品91爽爽久久| 在线观看亚洲精品视频| 91麻豆精品国产91久久久使用方法| 欧美tk—视频vk| 综合久久国产九一剧情麻豆| 亚洲自拍偷拍麻豆| 老司机午夜精品| 不卡一区中文字幕| 欧美日韩精品专区| 日本一二三四高清不卡| 一区二区三区在线视频播放| 美女视频黄 久久| 91影院在线观看| 欧美sm极限捆绑bd| 一区二区三区在线播放| 紧缚捆绑精品一区二区| 91浏览器入口在线观看| 日韩欧美在线网站| 日韩理论电影院| 激情六月婷婷综合| 欧洲色大大久久| 久久久电影一区二区三区| 亚洲精品国产a久久久久久| 久色婷婷小香蕉久久| 色丁香久综合在线久综合在线观看| 91精品国产一区二区三区| 国产精品成人一区二区艾草| 青青草精品视频| 色激情天天射综合网| 国产日韩精品一区二区三区| 日日夜夜精品视频免费| 91影视在线播放| 欧美极品少妇xxxxⅹ高跟鞋| 爽爽淫人综合网网站| 91在线观看污| 国产欧美日韩不卡| 久久精品99久久久| 欧美高清视频www夜色资源网| 国产精品乱码久久久久久| 六月丁香综合在线视频| 欧美美女一区二区在线观看| 最近日韩中文字幕| 粉嫩嫩av羞羞动漫久久久| 欧美成人三级电影在线| 日韩成人免费在线| 欧美视频第二页| 亚洲卡通动漫在线| 99久久er热在这里只有精品66| 久久午夜免费电影| 久久99精品久久久久久国产越南| 欧美区在线观看| 亚洲高清免费在线| 欧美在线观看禁18| 亚洲宅男天堂在线观看无病毒| 色综合久久九月婷婷色综合| 国产精品乱码一区二三区小蝌蚪| 国产精品亚洲午夜一区二区三区 | 欧美tickling网站挠脚心| 丝袜美腿亚洲色图| 欧美日韩国产高清一区| 亚洲高清视频在线| 在线不卡的av| 美女一区二区三区| 欧美精品一区二区在线播放| 蜜臂av日日欢夜夜爽一区| 欧美草草影院在线视频| 麻豆成人久久精品二区三区小说| 欧美一级二级三级蜜桃| 日本亚洲视频在线| 日韩欧美中文字幕公布| 狠狠色丁香久久婷婷综合丁香| 久久久久久免费毛片精品| 国产高清精品在线| 国产精品二三区| 91精品1区2区| 日韩精品欧美精品| 日韩欧美一区在线| 国产成人综合在线播放| 国产精品久久一级| 色悠悠久久综合| 日韩av成人高清| 精品1区2区在线观看| 国产精品456| 亚洲欧美综合网| 欧美群妇大交群的观看方式| 裸体健美xxxx欧美裸体表演| 久久久久久久综合色一本| 成人免费毛片app| 亚洲图片一区二区| 精品国产污网站| 99视频精品免费视频| 亚洲成人一区在线| 欧美精品一区二区在线播放| a亚洲天堂av| 日韩电影免费在线| 日本一区免费视频|