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

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

?? 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一区二区三区免费野_久草精品视频
国产精品久久久久影院色老大| 日韩一级免费观看| 精品国产伦一区二区三区免费| 中文字幕制服丝袜成人av| 久久国产生活片100| 欧美又粗又大又爽| 国产精品麻豆视频| 国产呦精品一区二区三区网站| 欧美日韩久久久| 亚洲久草在线视频| 粉嫩一区二区三区性色av| 欧美成人女星排名| 日韩不卡一区二区三区 | 1024国产精品| 国产一区在线观看视频| 欧美一级一级性生活免费录像| 亚洲激情av在线| 不卡高清视频专区| 国产午夜精品久久久久久免费视 | 中文字幕av一区二区三区免费看 | 亚洲男人的天堂av| 国产.欧美.日韩| 久久一夜天堂av一区二区三区| 日本伊人精品一区二区三区观看方式 | 国产精品女主播av| 国产麻豆成人传媒免费观看| 欧美成人一区二区三区在线观看 | 国产精品私人自拍| 国产精品综合二区| 精品国一区二区三区| 人人精品人人爱| 日韩一级完整毛片| 视频在线观看91| 欧美精品日日鲁夜夜添| 亚洲成人av电影在线| 欧美在线免费播放| 亚洲丰满少妇videoshd| 91久久线看在观草草青青| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 国产激情视频一区二区在线观看| 精品国产91亚洲一区二区三区婷婷| 蜜桃av一区二区| 日韩一级精品视频在线观看| 日本成人中文字幕在线视频| 日韩一区二区影院| 久久精品国产99国产精品| 精品免费视频一区二区| 久久精品国产77777蜜臀| 日韩精品自拍偷拍| 国产乱码精品一区二区三区忘忧草 | 欧美一区二区三区免费大片| 奇米精品一区二区三区四区| 日韩一区二区在线观看| 精品一二线国产| 国产亚洲成年网址在线观看| 粉嫩一区二区三区性色av| 亚洲三级视频在线观看| 在线观看av不卡| 视频一区视频二区中文字幕| 欧美一级高清大全免费观看| 国产呦萝稀缺另类资源| 国产欧美1区2区3区| 色综合中文字幕国产 | 国产精品超碰97尤物18| 91麻豆免费看片| 天天操天天综合网| 精品少妇一区二区三区视频免付费| 国产在线不卡一区| 亚洲欧美一区二区三区孕妇| 欧美日韩日日夜夜| 激情六月婷婷综合| 国产精品久久久久婷婷二区次| 日本韩国视频一区二区| 日韩电影免费一区| 国产欧美1区2区3区| 欧美无乱码久久久免费午夜一区| 日韩电影在线观看一区| 国产无遮挡一区二区三区毛片日本| 91原创在线视频| 日本欧美一区二区三区乱码| 久久人人97超碰com| 色偷偷一区二区三区| 男女男精品网站| 国产精品久久久久久久第一福利| 在线看不卡av| 精品夜夜嗨av一区二区三区| 亚洲美女淫视频| 日韩欧美在线影院| 99精品黄色片免费大全| 日韩国产精品91| 国产精品久久久久影院老司 | 97久久久精品综合88久久| 图片区小说区区亚洲影院| 国产欧美一区二区精品秋霞影院 | 夫妻av一区二区| 亚洲一二三区视频在线观看| www亚洲一区| 在线观看国产精品网站| 国产一区二区免费看| 亚洲一区二区三区免费视频| 国产日韩欧美精品电影三级在线| 欧美日韩在线电影| 丁香婷婷深情五月亚洲| 午夜成人免费视频| 国产精品超碰97尤物18| 欧美成人国产一区二区| 色婷婷av一区二区三区之一色屋| 国产在线播精品第三| 亚洲第一主播视频| 国产精品三级av在线播放| 91精品婷婷国产综合久久| caoporn国产一区二区| 精油按摩中文字幕久久| 亚洲不卡一区二区三区| 国产精品九色蝌蚪自拍| 日韩美女视频在线| 欧美日韩高清不卡| 91热门视频在线观看| 狠狠久久亚洲欧美| 日韩高清一区二区| 悠悠色在线精品| 中文字幕久久午夜不卡| 日韩精品自拍偷拍| 69久久99精品久久久久婷婷| 91啪亚洲精品| 国产99久久久久久免费看农村| 日本免费新一区视频| 亚洲成人三级小说| 亚洲黄网站在线观看| 中文字幕一区二区三区四区| 久久这里都是精品| 日韩一区二区三区视频在线| 欧美日韩中文字幕一区| 色爱区综合激月婷婷| 成人aa视频在线观看| 国产成人自拍网| 激情亚洲综合在线| 久久99久久99精品免视看婷婷| 日韩av一区二区三区四区| 亚洲国产日韩a在线播放性色| 亚洲三级在线观看| 亚洲欧美日韩精品久久久久| 国产精品乱码久久久久久| 久久久噜噜噜久久中文字幕色伊伊| 欧美一二三在线| 日韩欧美国产综合一区| 欧美一级xxx| 91精品在线一区二区| 3atv在线一区二区三区| 884aa四虎影成人精品一区| 欧美日本一区二区在线观看| 欧美日本一区二区| 欧美日韩国产免费| 欧美日韩另类国产亚洲欧美一级| 在线亚洲高清视频| 欧美色欧美亚洲另类二区| 欧美日韩专区在线| 91精品在线观看入口| 日韩亚洲欧美综合| 精品日韩一区二区| 亚洲精品一区二区三区香蕉| wwwwxxxxx欧美| 国产性色一区二区| 欧美国产在线观看| 国产精品区一区二区三| 国产精品不卡一区二区三区| 亚洲婷婷国产精品电影人久久| 日韩码欧中文字| 艳妇臀荡乳欲伦亚洲一区| 亚洲一区二区偷拍精品| 日韩一区精品字幕| 捆绑调教美女网站视频一区| 极品少妇xxxx精品少妇偷拍| 国产成人亚洲精品狼色在线| 99精品视频在线播放观看| 欧美中文字幕一区二区三区 | 欧美日韩一区三区| 91麻豆精品国产91久久久久久| 日韩一区二区三区在线| wwww国产精品欧美| 国产精品国产三级国产aⅴ入口 | 蜜桃av一区二区在线观看 | 水蜜桃久久夜色精品一区的特点| 午夜精品福利一区二区蜜股av| 蜜臀av在线播放一区二区三区| 精品影院一区二区久久久| 国产精选一区二区三区| 91麻豆福利精品推荐| 欧美日韩国产成人在线免费| 精品国产sm最大网站免费看| 国产精品视频你懂的| 亚洲在线成人精品| 免费精品视频在线| 成人黄色av网站在线| 欧美日韩在线精品一区二区三区激情| 欧美疯狂做受xxxx富婆| 久久久久久一二三区| 亚洲视频你懂的| 久久国产剧场电影| 99精品视频一区|