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

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

?? jquery-plugins.js

?? blog,介紹:ui層是用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| 日韩视频一区二区三区在线播放| 久久久亚洲精品一区二区三区 | 国产麻豆9l精品三级站| 99视频一区二区| 久久久久88色偷偷免费| 免费人成黄页网站在线一区二区| 欧美中文字幕一区| 国产精品久99| 国产成人三级在线观看| 欧美一级欧美三级| 五月天一区二区三区| 99re热这里只有精品免费视频| 精品福利二区三区| 日本不卡高清视频| 7799精品视频| 亚洲电影一区二区三区| 色综合视频一区二区三区高清| 国产欧美精品一区二区色综合朱莉| 久久精品国产色蜜蜜麻豆| 欧美日韩二区三区| 丝袜美腿亚洲一区二区图片| 色先锋aa成人| 亚洲综合av网| 欧美日韩一区二区三区四区五区 | 91视视频在线直接观看在线看网页在线看| 91精品国产91久久综合桃花 | 国产精品自拍三区| 日韩精品最新网址| 激情久久五月天| 久久亚洲捆绑美女| 粉嫩av一区二区三区在线播放| 久久人人爽爽爽人久久久| 久久成人精品无人区| 日韩欧美一级特黄在线播放| 毛片av一区二区| 久久人人97超碰com| 国产suv精品一区二区三区| 国产欧美精品一区| 91丨九色丨黑人外教| 亚洲精品免费视频| 欧美日韩国产片| 麻豆精品一区二区| 久久新电视剧免费观看| 成人高清在线视频| 夜夜夜精品看看| 欧美一级理论性理论a| 精品一区二区三区在线视频| 久久久久久夜精品精品免费| 不卡的av电影| 亚洲成人一区二区| 日韩精品最新网址| 成年人国产精品| 亚洲免费在线观看| 日韩视频免费观看高清完整版在线观看 | 欧美日本韩国一区二区三区视频| 蜜臀av一区二区在线观看| 国产午夜精品一区二区三区四区| 色综合天天综合网国产成人综合天 | 欧美日本乱大交xxxxx| 日韩不卡在线观看日韩不卡视频| 久久精品一区二区三区av| 色偷偷88欧美精品久久久| 性做久久久久久免费观看| 亚洲精品一区二区在线观看| yourporn久久国产精品| 午夜精品久久久久久久| 久久人人97超碰com| 色婷婷狠狠综合| 狠狠久久亚洲欧美| 伊人开心综合网| 日韩欧美国产系列| 91在线视频网址| 久久99热狠狠色一区二区| 日韩美女啊v在线免费观看| 欧美一级爆毛片| 欧美色倩网站大全免费| 久久av老司机精品网站导航| 一区二区三区四区在线免费观看 | 欧美日韩国产综合一区二区| 国产盗摄一区二区三区| 亚洲mv大片欧洲mv大片精品| 欧美高清在线一区| 日韩一区二区在线看| 91亚洲国产成人精品一区二三 | 美女视频一区二区三区| 国产精品传媒在线| 国产日本欧美一区二区| 日韩免费高清电影| 欧美日韩激情一区二区三区| 99免费精品在线| 国产91高潮流白浆在线麻豆| 日本在线不卡视频| 一区二区三区在线观看动漫| ww久久中文字幕| 精品999久久久| 日韩欧美亚洲一区二区| 欧美精品久久一区| 欧美色图免费看| 欧美网站一区二区| 欧美调教femdomvk| 色综合久久久网| 色8久久人人97超碰香蕉987| 成人激情校园春色| 国产精品77777| 国内精品免费**视频| 免费黄网站欧美| 另类综合日韩欧美亚洲| 七七婷婷婷婷精品国产| 日韩主播视频在线| 亚洲一区二区欧美日韩| 亚洲色图第一区| 夜夜爽夜夜爽精品视频| 亚洲精品成人悠悠色影视| 亚洲欧洲制服丝袜| 亚洲精品亚洲人成人网在线播放| 中文字幕一区二区三区四区| 国产精品国产三级国产普通话蜜臀 | 亚洲二区在线观看| 日本最新不卡在线| 久久99精品久久久久久动态图 | 色偷偷一区二区三区| 一本色道久久综合亚洲精品按摩| 色婷婷一区二区| 欧美日韩五月天| 精品日产卡一卡二卡麻豆| 久久精品一区蜜桃臀影院| 国产精品另类一区| 一区二区三区欧美亚洲| 亚洲大片免费看| 精品一区二区三区在线播放视频| 国产乱一区二区| 色综合久久综合网欧美综合网| 欧美视频一区在线观看| 欧美一级电影网站| 国产精品丝袜久久久久久app| 亚洲精品乱码久久久久久黑人| 亚洲一区二区影院| 久久精品国产澳门| 成人黄色在线看| 91精品久久久久久蜜臀| 26uuu亚洲| 亚洲精品视频在线| 六月婷婷色综合| 色综合久久六月婷婷中文字幕| 欧美群妇大交群中文字幕| 精品成人在线观看| 亚洲女同女同女同女同女同69| 亚洲成人资源网| 成人精品小蝌蚪| 7777精品伊人久久久大香线蕉的| 国产亚洲一本大道中文在线| 一区二区三区在线免费播放| 精品亚洲porn| 欧美影院一区二区| 国产精品―色哟哟| 日韩精品免费视频人成| www.亚洲免费av| 精品久久久久久久久久久院品网 | 欧美精品乱码久久久久久| 久久一留热品黄| 日韩精品午夜视频| www.亚洲色图| 国产亚洲欧美一级| 奇米四色…亚洲| 欧美色倩网站大全免费| 国产精品少妇自拍| 久久aⅴ国产欧美74aaa| 精品视频一区二区不卡| 国产精品乱码人人做人人爱| 精品在线一区二区三区| 欧美日韩成人一区二区| 中文字幕一区二区三区在线不卡| 久久国产精品无码网站| 欧美老肥妇做.爰bbww| 亚洲人吸女人奶水| 成人免费精品视频| 国产午夜精品福利| 蜜臂av日日欢夜夜爽一区| 欧美午夜精品一区二区三区 | 国产欧美日韩综合| 久久99国内精品| 在线成人av网站| 午夜电影网亚洲视频| 色中色一区二区| 中文文精品字幕一区二区| 国产一区二区91| 国产色91在线| 国产91精品露脸国语对白| 久久这里只有精品6| 精品一区在线看| 精品少妇一区二区三区免费观看 | 国产福利精品导航| 久久久欧美精品sm网站| 国产自产视频一区二区三区 | 欧美一级在线免费|