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

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

?? jquery-plugins.js

?? 一個自娛自樂的demo 開發(fā)環(huán)境 apache-tomcat-6.0.16 Mysql 5.1.11 Jdk 1.6 文件結(jié)構(gòu)如下 --MyGame -----MyGam
?? 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一区二区三区免费野_久草精品视频
国产拍欧美日韩视频二区| 欧美大片一区二区三区| 国产成人午夜99999| 亚洲chinese男男1069| 青青草精品视频| 1区2区3区精品视频| 亚洲精品在线网站| 欧美精品一区视频| 日韩女优视频免费观看| 色综合天天综合网天天狠天天 | 国产视频不卡一区| 日韩一级二级三级| 日韩一区二区影院| 精品日韩在线一区| 精品国产91久久久久久久妲己| 777奇米四色成人影色区| 欧美天堂亚洲电影院在线播放| aaa欧美日韩| 91蜜桃在线观看| 天堂在线一区二区| 国产一区二区三区四区五区美女| 亚洲精品中文在线| 亚洲mv在线观看| 丝袜国产日韩另类美女| 日本欧美在线看| 黑人精品欧美一区二区蜜桃| 国产成人8x视频一区二区| 91在线观看一区二区| 欧洲亚洲精品在线| 在线不卡免费av| 久久久精品国产99久久精品芒果 | 蜜桃av一区二区在线观看 | 欧美色手机在线观看| 欧美成人女星排名| 日韩理论片一区二区| 丝袜美腿亚洲一区二区图片| 国产美女视频91| 欧美亚洲国产bt| 国产午夜精品一区二区| 亚洲一区二区在线观看视频| 精品一区二区三区在线观看国产| 91在线看国产| 国产午夜一区二区三区| 97超碰欧美中文字幕| 欧美色大人视频| 国产精品国产三级国产有无不卡| 日本欧美在线观看| 91麻豆swag| 欧美韩日一区二区三区四区| 日韩av成人高清| 欧美三级电影一区| 亚洲人成伊人成综合网小说| 日韩免费看的电影| 亚洲午夜国产一区99re久久| 成人av中文字幕| 国产视频一区在线观看| 看片网站欧美日韩| 91精品国产综合久久小美女| 亚洲美女免费视频| 色婷婷精品久久二区二区蜜臀av| 国产精品天美传媒| 成人亚洲精品久久久久软件| |精品福利一区二区三区| 国产精品夜夜嗨| 欧美激情一区在线| 粗大黑人巨茎大战欧美成人| 26uuu久久综合| 国产在线看一区| 国产网站一区二区| 波多野结衣中文字幕一区二区三区 | 成人网在线免费视频| 日韩精品乱码av一区二区| 欧美日本一区二区三区| 国内精品国产成人| 国产欧美精品一区| 91日韩精品一区| 性久久久久久久久久久久| 欧美夫妻性生活| 国产精品亚洲第一区在线暖暖韩国| 欧美大片一区二区| 国产精品18久久久久久久久| 国产精品美女久久久久高潮| 97se亚洲国产综合自在线| 亚洲影院在线观看| 日韩欧美成人一区二区| 99免费精品视频| 91视频.com| 蜜桃视频一区二区| 亚洲同性gay激情无套| 日韩一区二区三区四区| 成人福利视频网站| 加勒比av一区二区| 亚洲蜜臀av乱码久久精品 | 欧美人与性动xxxx| 国产成人精品亚洲日本在线桃色| 亚洲综合视频网| 中文字幕免费不卡在线| 日韩欧美一级片| 色婷婷综合在线| 国产毛片精品国产一区二区三区| 日韩中文字幕1| 日韩毛片精品高清免费| 久久天堂av综合合色蜜桃网| 777xxx欧美| 欧美日韩高清不卡| 91成人在线观看喷潮| 91日韩在线专区| 不卡在线视频中文字幕| 国产成人综合在线观看| 免费成人美女在线观看.| 亚洲成人激情自拍| 天天综合网 天天综合色| 亚洲综合男人的天堂| 中文字幕中文字幕中文字幕亚洲无线| 亚洲va国产天堂va久久en| 日日夜夜精品视频免费| 亚洲你懂的在线视频| 国产精品蜜臀av| 亚洲欧洲国产日韩| 亚洲日本乱码在线观看| 国产精品色在线观看| 中文字幕不卡三区| 国产精品久久久久久久久免费相片| 久久女同性恋中文字幕| 久久亚洲一级片| 欧美激情一二三区| 亚洲激情自拍偷拍| 亚洲午夜免费电影| 美国一区二区三区在线播放| 免费成人av在线播放| 国产伦理精品不卡| 91麻豆福利精品推荐| 制服丝袜成人动漫| 精品成a人在线观看| 中文字幕不卡在线观看| 亚洲一二三四区不卡| 青椒成人免费视频| 福利一区在线观看| 欧美日韩视频在线一区二区| 精品国产一区久久| 亚洲精选视频在线| 久久精品国产77777蜜臀| 成人性生交大片免费看在线播放| 欧美影院一区二区三区| 久久蜜桃香蕉精品一区二区三区| 综合久久久久久久| 国产乱码精品一区二区三区av| 91麻豆免费观看| 国产亚洲一区二区在线观看| 亚洲精品免费一二三区| 国产精品一线二线三线| 91精品国产综合久久国产大片| 国产农村妇女精品| 久久国产精品72免费观看| 欧美性感一类影片在线播放| 欧美激情在线看| 国产精品白丝jk白祙喷水网站| 欧美日韩另类一区| 亚洲一区二区在线视频| 91丨九色丨蝌蚪丨老版| www国产成人免费观看视频 深夜成人网| 国产精品女同互慰在线看| 精品中文字幕一区二区小辣椒 | 久久超碰97人人做人人爱| 欧美中文字幕一区二区三区| 国产精品久久久久久久久图文区 | 紧缚捆绑精品一区二区| 日韩一区二区三区电影| 秋霞午夜鲁丝一区二区老狼| 7777精品伊人久久久大香线蕉的| 中文字幕一区二区三区乱码在线 | 色哟哟一区二区在线观看| 国产精品麻豆一区二区| 成人国产精品免费观看动漫| 欧美国产日韩在线观看| 播五月开心婷婷综合| 中文字幕一区日韩精品欧美| 色综合咪咪久久| 视频精品一区二区| 精品国产髙清在线看国产毛片| 国产精品综合二区| 国产精品成人免费在线| 在线观看视频91| 国产精品影音先锋| 亚洲色图清纯唯美| 欧美日韩精品一区二区三区| 免费av成人在线| 国产精品美女久久久久久久网站| 91麻豆免费看| 激情六月婷婷久久| 亚洲丝袜精品丝袜在线| 91精品久久久久久久91蜜桃| 国产福利一区二区三区视频| 亚洲国产日韩在线一区模特| 久久精品视频在线免费观看| 色av一区二区| 国产精品 欧美精品| 日韩高清不卡一区二区| **性色生活片久久毛片| 欧美一级二级三级蜜桃|