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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? jquery-plugins.js

?? 一個(gè)自?shī)首詷?lè)的demo 開(kāi)發(fā)環(huán)境 apache-tomcat-6.0.16 Mysql 5.1.11 Jdk 1.6 文件結(jié)構(gòu)如下 --MyGame -----MyGam
?? JS
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
/*
 * 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/*

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品久久久久久久久老牛影院| 青青草视频一区| 一区二区三区免费在线观看| 亚洲日本青草视频在线怡红院 | 亚洲午夜免费视频| 日本欧美一区二区| 国产suv一区二区三区88区| 99re热视频精品| 欧美日韩成人综合在线一区二区| 欧美一级爆毛片| 国产精品系列在线| 亚洲一区二区视频| 久久99日本精品| 91丝袜呻吟高潮美腿白嫩在线观看| 欧美专区亚洲专区| 欧美精品一区二区三区在线播放| 久久精品在线观看| 一区二区三区在线视频观看| 日韩av网站在线观看| 国产成人av一区| 欧美日韩激情一区二区| 久久先锋影音av| 亚洲一区二区三区在线看| 国产一区二区在线视频| 国产欧美一区二区精品久导航| 欧美激情一区二区在线| 午夜精品成人在线| 成人97人人超碰人人99| 欧美日产国产精品| 国产精品私房写真福利视频| 亚洲丶国产丶欧美一区二区三区| 国产精品亚洲午夜一区二区三区| 日本电影欧美片| 久久久久久久久久久久电影 | 久久久久国产免费免费| 国产精品日韩成人| 视频一区二区三区入口| 国产九色sp调教91| 欧美最猛性xxxxx直播| 日韩视频不卡中文| 亚洲女人小视频在线观看| 亚洲同性gay激情无套| 亚洲激情综合网| 久久av老司机精品网站导航| 国产精品影视天天线| 欧美中文字幕一区| 日韩亚洲欧美成人一区| 欧美精品一区二区三区蜜桃视频| 亚洲综合色网站| 日韩电影免费一区| 99精品国产一区二区三区不卡| 欧美日韩高清一区二区三区| 亚洲国产成人在线| 麻豆91精品91久久久的内涵| www.日韩大片| 欧美变态凌虐bdsm| 亚洲午夜羞羞片| 成人蜜臀av电影| 欧美电影免费提供在线观看| 亚洲欧美日韩精品久久久久| 久久精品av麻豆的观看方式| 97se亚洲国产综合自在线观| 精品久久人人做人人爽| 亚洲一区二区三区在线播放| 处破女av一区二区| 精品国产三级a在线观看| 亚洲资源中文字幕| eeuss鲁片一区二区三区在线观看| 欧美精品777| 最新欧美精品一区二区三区| 久久 天天综合| 在线观看亚洲精品视频| 国产精品色婷婷久久58| 国产精品综合二区| 日韩欧美中文一区| 亚洲午夜精品网| 色婷婷综合激情| 中文字幕精品一区二区精品绿巨人| 免费高清在线一区| 欧美精品tushy高清| 亚洲精品视频在线观看网站| 国产成人免费xxxxxxxx| 精品国产91乱码一区二区三区| 天堂蜜桃一区二区三区| 一区在线播放视频| 国产精品亚洲成人| 欧美精品一区二区三区蜜桃 | 亚洲高清免费视频| 97久久久精品综合88久久| 久久九九99视频| 国产精品一区二区无线| 久久色在线观看| 狠狠色狠狠色综合日日91app| 欧美一级黄色片| 亚洲成人免费影院| 51久久夜色精品国产麻豆| 亚洲一区二区三区在线| 欧美视频在线一区二区三区 | 91精品福利在线| 亚洲女爱视频在线| 色综合久久综合| 一区二区三区四区不卡在线| 97精品国产露脸对白| 国产精品久久久久精k8| 99精品视频一区二区| 亚洲色图在线视频| 91激情在线视频| 亚洲精品成人悠悠色影视| 成人av午夜电影| 日韩美女啊v在线免费观看| 国产凹凸在线观看一区二区| 久久久精品tv| 东方aⅴ免费观看久久av| 成人欧美一区二区三区白人 | 日本高清成人免费播放| 亚洲欧美色图小说| 在线观看日韩毛片| 石原莉奈在线亚洲二区| 在线观看免费成人| 水蜜桃久久夜色精品一区的特点| 久久嫩草精品久久久精品| 男女性色大片免费观看一区二区 | 亚洲欧美二区三区| 欧美在线免费播放| 奇米在线7777在线精品 | 亚洲第一久久影院| 日韩欧美在线观看一区二区三区| 国产一区二区在线影院| 国产精品精品国产色婷婷| 国产91精品免费| 国产精品久久久久aaaa樱花| 91在线视频观看| 一区二区三区不卡视频| 欧美日韩国产高清一区二区| 美国av一区二区| 国产女同互慰高潮91漫画| 成人h版在线观看| 一区二区免费看| 欧美精品 日韩| 狠狠色丁香久久婷婷综合_中| 日本一区免费视频| 欧美网站大全在线观看| 麻豆精品蜜桃视频网站| 国产精品久久久久婷婷| 欧美日韩亚洲高清一区二区| 激情伊人五月天久久综合| 亚洲欧美日韩国产综合| 日韩一区二区三区在线观看| 成人黄色av电影| 视频一区二区三区中文字幕| 久久久99精品久久| 在线一区二区三区四区五区| 精品亚洲成a人| 亚洲精品乱码久久久久久久久 | 久久精品水蜜桃av综合天堂| av激情亚洲男人天堂| 亚洲高清免费一级二级三级| 国产喂奶挤奶一区二区三区| 欧美性xxxxxxxx| 国产成人精品免费在线| 亚洲福利一二三区| 国产嫩草影院久久久久| 欧美久久久久久蜜桃| zzijzzij亚洲日本少妇熟睡| 免费成人av在线| 亚洲精品你懂的| 国产亚洲综合色| 欧美久久一二三四区| 国产成人综合视频| 亚洲一二三四区| 国产日韩精品视频一区| 欧美色男人天堂| 国产成人av福利| 狠狠色丁香久久婷婷综合丁香| 亚洲午夜影视影院在线观看| 久久久久久电影| 91精品久久久久久久久99蜜臂| 色综合久久久久网| 国产成人精品网址| 另类小说综合欧美亚洲| 亚洲欧美国产77777| 国产午夜久久久久| 精品国产一区二区亚洲人成毛片| 精品视频色一区| 色一区在线观看| 99re亚洲国产精品| 成人午夜激情视频| 国产一区 二区| 男人的j进女人的j一区| 亚洲一区二区三区四区不卡| 国产精品久久久久影院| 日韩一级成人av| 欧美日韩一卡二卡三卡 | 精品国产乱码久久久久久久| 欧美日韩一区二区在线观看视频| 色综合视频一区二区三区高清| 成人av免费观看| 国产ts人妖一区二区| 国产精品亚洲一区二区三区妖精| 狠狠色丁香九九婷婷综合五月|