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

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

?? 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/*

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品国产免费一区二区三区四区 | 99久久er热在这里只有精品15| 婷婷丁香激情综合| 亚洲成人一区二区| 亚洲综合在线视频| 亚洲国产综合色| 亚洲成人免费在线| 日韩国产在线一| 全国精品久久少妇| 久久91精品久久久久久秒播| 美国三级日本三级久久99 | 欧美男人的天堂一二区| 精品视频1区2区| 欧美二区在线观看| 91精品久久久久久蜜臀| 日韩精品专区在线影院重磅| 精品成人一区二区三区| 久久久噜噜噜久久人人看| 亚洲国产精品成人综合| 国产精品久久久久影院亚瑟| 一区二区三区在线免费观看| 亚洲国产wwwccc36天堂| 欧美a级理论片| 国产在线日韩欧美| www.日韩av| 欧美另类高清zo欧美| 欧美xxxxxxxx| 国产精品美女一区二区| 亚洲h动漫在线| 极品销魂美女一区二区三区| 成人国产一区二区三区精品| 色婷婷综合激情| 欧美一卡2卡三卡4卡5免费| 国产色婷婷亚洲99精品小说| 亚洲精品videosex极品| 琪琪久久久久日韩精品| 国产精品1区2区| 在线中文字幕一区| 欧美成人女星排名| 亚洲美女电影在线| 久久国产精品第一页| av电影天堂一区二区在线观看| 欧美日韩在线电影| 久久久久久久网| 亚洲一区在线观看免费| 激情文学综合网| 欧美又粗又大又爽| 国产三级精品三级| 亚洲不卡av一区二区三区| 国产酒店精品激情| 欧美麻豆精品久久久久久| 欧美激情自拍偷拍| 麻豆精品国产91久久久久久| 91香蕉视频mp4| 久久久久99精品国产片| 视频一区二区欧美| 99国产精品久久| 久久婷婷国产综合精品青草| 午夜精品福利一区二区蜜股av | 国产精品一区三区| 欧美日韩免费高清一区色橹橹| 国产偷v国产偷v亚洲高清| 首页国产欧美日韩丝袜| 92国产精品观看| 久久综合久久综合亚洲| 丝袜亚洲另类欧美| 色婷婷综合久久久中文字幕| 久久精品国产99国产| 色综合一个色综合| 国产欧美精品日韩区二区麻豆天美| 亚洲电影在线免费观看| 99精品1区2区| 欧美国产日韩精品免费观看| 麻豆国产精品一区二区三区| 精品视频在线免费看| 中文字幕一区在线| 国产高清亚洲一区| 精品久久国产97色综合| 日本免费在线视频不卡一不卡二 | 欧美国产日韩在线观看| 精品在线播放免费| 777午夜精品免费视频| 一级特黄大欧美久久久| av电影在线不卡| 国产精品久久久久影院亚瑟 | 欧美在线免费观看视频| 国产精品久久看| 国产电影一区在线| 精品久久久久久久久久久久久久久| 午夜精品久久久久久| 91国偷自产一区二区三区成为亚洲经典 | 91久久精品一区二区二区| 1区2区3区欧美| 成人性色生活片| 久久久99久久| 国产一区欧美二区| 国产日韩综合av| 高清国产一区二区| 国产欧美精品国产国产专区| 国产精品资源在线看| 久久午夜国产精品| 国产盗摄一区二区| 中文字幕欧美区| 99久久精品情趣| 亚洲三级免费观看| 色欲综合视频天天天| 一区二区三区国产精品| 欧美性生活一区| 日韩福利电影在线观看| 日韩欧美一级特黄在线播放| 美女看a上一区| 久久久www免费人成精品| 国产成人一级电影| 国产精品国产精品国产专区不片| 成年人国产精品| 一区二区三区四区不卡在线 | 日韩丝袜情趣美女图片| 麻豆视频一区二区| 国产日韩欧美亚洲| 99热在这里有精品免费| 亚洲午夜av在线| 欧美变态tickling挠脚心| 国产精品一区二区三区99| 国产午夜精品在线观看| 91在线小视频| 亚洲国产欧美一区二区三区丁香婷| 欧美一卡2卡3卡4卡| 国产高清精品在线| 亚洲视频一区二区在线| 欧美日韩国产一区二区三区地区| 秋霞av亚洲一区二区三| 国产日韩欧美精品电影三级在线| 91免费版在线看| 日韩国产高清在线| 国产亚洲欧洲一区高清在线观看| 99re免费视频精品全部| 日韩影院在线观看| 国产日韩欧美不卡| 欧美午夜精品久久久久久超碰| 免费在线观看成人| 国产精品福利一区二区三区| 欧美日本视频在线| 成人久久视频在线观看| 午夜影视日本亚洲欧洲精品| 国产亚洲自拍一区| 欧美少妇xxx| 国产成人免费视频网站| 亚洲午夜久久久久久久久电影院 | 自拍偷拍欧美精品| 欧美一区二区大片| 色综合久久久久| 久久er精品视频| 亚洲在线视频免费观看| 久久久一区二区| 欧美日韩一卡二卡三卡| 粉嫩av亚洲一区二区图片| 奇米四色…亚洲| 亚洲免费观看在线视频| 精品对白一区国产伦| 欧美午夜不卡视频| 不卡视频在线观看| 久草这里只有精品视频| 一区二区三区欧美亚洲| 国产农村妇女毛片精品久久麻豆 | 日韩欧美的一区二区| 一本到三区不卡视频| 国产一区在线看| 日本不卡一区二区三区高清视频| 国产精品久久久99| 久久精品视频在线免费观看| 欧美日韩不卡一区二区| 99久免费精品视频在线观看 | 精品国产一二三| 欧美日韩精品一区二区| 成人小视频免费观看| 另类调教123区 | 成人午夜免费电影| 美女网站一区二区| 亚洲国产精品嫩草影院| 亚洲欧美综合色| 国产亚洲短视频| 精品国产制服丝袜高跟| 欧美久久婷婷综合色| 91社区在线播放| www.亚洲免费av| 成人丝袜高跟foot| 国产激情一区二区三区| 精品亚洲成a人| 久久99久久99精品免视看婷婷 | av在线播放不卡| 国产精品影音先锋| 久久国产日韩欧美精品| 毛片av一区二区| 久久国产福利国产秒拍| 丝袜美腿亚洲综合| 亚洲gay无套男同| 婷婷亚洲久悠悠色悠在线播放| 亚洲综合激情小说| 亚洲一区二区三区在线| 亚洲一区二区三区中文字幕|