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

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

?? jquery-plugins.js

?? 個人寫的Blog系統
?? 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日韩精品一区| 一本色道久久综合精品竹菊| 艳妇臀荡乳欲伦亚洲一区| 日韩一区中文字幕| 亚洲欧美日韩人成在线播放| 亚洲青青青在线视频| 亚洲精品日韩一| 亚洲成精国产精品女| 亚洲一区二区三区中文字幕 | 在线精品视频免费观看| 日本丶国产丶欧美色综合| 欧美亚洲综合色| 日韩精品一区二区三区中文不卡 | 欧美tickling网站挠脚心| 欧美成人一区二区三区在线观看| 91精品国产乱| 久久久久久综合| 国产精品乱码一区二区三区软件| 国产精品色婷婷久久58| 一区二区三区在线视频免费| 亚洲高清三级视频| 久久99国产精品成人| 成人美女视频在线观看18| 色狠狠桃花综合| 日韩丝袜美女视频| 中文字幕一区av| 婷婷久久综合九色综合绿巨人| 韩国成人在线视频| 97精品久久久午夜一区二区三区 | 日韩精品中文字幕在线不卡尤物| 国产午夜精品一区二区三区嫩草| 亚洲精选免费视频| 久久精品免费观看| 99精品视频在线播放观看| 91精品国产欧美一区二区18 | 亚洲午夜在线电影| 国产精品白丝jk黑袜喷水| 一本一道久久a久久精品综合蜜臀| 欧美人与性动xxxx| 国产精品入口麻豆九色| 天天色天天爱天天射综合| 懂色av中文一区二区三区| 欧美在线你懂得| 亚洲国产精品精华液ab| 石原莉奈一区二区三区在线观看 | 欧美午夜精品一区二区蜜桃| 精品久久久久久久一区二区蜜臀| 亚洲欧美另类图片小说| 国产一区二区精品久久99| 欧美亚洲精品一区| 国产精品久久午夜夜伦鲁鲁| 日本午夜精品一区二区三区电影| 成人h版在线观看| 欧美成人在线直播| 婷婷综合另类小说色区| 色婷婷综合久久久中文字幕| 中文字幕第一页久久| 国产麻豆视频一区| 日韩视频免费观看高清完整版在线观看| 中文字幕视频一区| 成人动漫视频在线| 国产亚洲va综合人人澡精品| 日韩不卡手机在线v区| 91官网在线免费观看| 国产精品国产三级国产普通话99 | 三级不卡在线观看| 欧美亚洲另类激情小说| 亚洲免费观看高清完整版在线| 国产精品亚洲а∨天堂免在线| 日韩欧美一级二级三级| 日日摸夜夜添夜夜添精品视频 | 日韩欧美国产三级| 麻豆久久久久久久| 日韩一区二区三区免费观看| 石原莉奈一区二区三区在线观看 | 久久婷婷国产综合国色天香 | 亚洲色欲色欲www在线观看| 波多野结衣中文字幕一区| 国产亚洲欧美一级| 国产成人在线视频免费播放| 欧美激情资源网| 成人免费av在线| 亚洲欧美乱综合| 欧美日韩一区二区在线观看| 亚洲激情男女视频| 欧美精品久久一区二区三区| 午夜欧美视频在线观看| 日韩一级视频免费观看在线| 美女在线观看视频一区二区| 2024国产精品| jlzzjlzz国产精品久久| 亚洲精品国产无天堂网2021| 欧美丝袜第三区| 日本三级亚洲精品| 久久久精品国产99久久精品芒果| 国产精品系列在线观看| 亚洲视频在线观看一区| 欧美日韩精品欧美日韩精品| 捆绑紧缚一区二区三区视频| 久久精品欧美一区二区三区麻豆| 99久久久无码国产精品| 亚洲第一福利一区| 久久天天做天天爱综合色| 一本久久综合亚洲鲁鲁五月天| 亚洲va韩国va欧美va精品| 亚洲精品一区二区三区在线观看 | 精品视频在线视频| 裸体在线国模精品偷拍| 中文字幕中文字幕中文字幕亚洲无线 | 欧美日韩一区二区三区不卡| 狠狠狠色丁香婷婷综合久久五月| 国产精品久久久久四虎| 欧美日产国产精品| 99视频国产精品| 免费精品99久久国产综合精品| 国产精品国产馆在线真实露脸| 欧美精品一二三| aa级大片欧美| 蜜臀精品久久久久久蜜臀| 亚洲欧洲99久久| 精品久久久久久最新网址| 欧美亚洲综合在线| 夫妻av一区二区| 另类小说图片综合网| 依依成人综合视频| 精品三级在线看| 欧美日韩一区精品| 99这里只有精品| 国产乱码精品一区二区三区五月婷| 亚洲综合色成人| 中文av一区二区| 久久综合色8888| 日韩欧美一二三四区| 欧美色综合影院| 99久久精品免费| 国产成人午夜片在线观看高清观看| 亚洲午夜私人影院| 亚洲免费av在线| 国产精品久99| 国产精品久久精品日日| 久久精品夜色噜噜亚洲a∨| 日韩午夜中文字幕| 欧美一区二区在线观看| 欧美色综合影院| 欧美性猛交xxxx黑人交| 在线视频一区二区免费| 99精品视频免费在线观看| 国产精品99久久久久久久女警| 国内精品在线播放| 韩国精品一区二区| 国产在线精品视频| 国产精品66部| 国产乱子伦视频一区二区三区| 毛片不卡一区二区| 极品少妇一区二区| 国产伦精品一区二区三区免费 | 免费在线看一区| 青椒成人免费视频| 久久精品99国产精品| 裸体歌舞表演一区二区| 免费成人av在线| 激情五月婷婷综合| 粉嫩嫩av羞羞动漫久久久| 成人国产精品免费网站| 91在线一区二区三区| 99精品一区二区| 欧美日韩国产在线播放网站| 欧美日韩在线播| 日韩欧美不卡一区| 国产欧美日韩三区| 亚洲日韩欧美一区二区在线| 亚洲综合色自拍一区| 日韩福利电影在线| 国产一区二区视频在线| 99久久国产免费看| 欧美人狂配大交3d怪物一区| 日韩欧美美女一区二区三区| 国产视频一区在线观看| 中文字幕亚洲在| 日韩电影免费在线看| 国产精品18久久久久久久久| 色老汉av一区二区三区| 日韩免费成人网| 国产精品国产三级国产| 日韩主播视频在线| 大桥未久av一区二区三区中文| 日本乱人伦aⅴ精品| 在线不卡免费av| 国产女同互慰高潮91漫画| 夜夜精品浪潮av一区二区三区| 久久成人免费日本黄色| 99re66热这里只有精品3直播| 在线播放91灌醉迷j高跟美女| 国产免费久久精品| 婷婷中文字幕一区三区| 成人av在线网站| 精品国产污污免费网站入口 | 日韩欧美的一区二区| 亚洲狼人国产精品| 国产成人一区在线|