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

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

?? mootools.svn.js

?? 基于MOOnTOOLs所開發的一個導航攔僅供參考
?? JS
?? 第 1 頁 / 共 5 頁
字號:
		>myFunction.delay(50, myElement) //wait 50 milliseconds, then call myFunction and bind myElement to it		>(function(){alert('one second later...')}).delay(1000); //wait a second and alert	*/	delay: function(delay, bind, args){		return this.create({'delay': delay, 'bind': bind, 'arguments': args})();	},	/*	Property: periodical		Executes a function in the specified intervals of time	Arguments:		interval - the duration of the intervals between executions.		bind - optional, the object that the "this" of the function will refer to.		args - optional, the arguments passed. must be an array if arguments > 1	*/	periodical: function(interval, bind, args){		return this.create({'periodical': interval, 'bind': bind, 'arguments': args})();	}});/*Script: Number.js	Contains the Number prototypes.License:	MIT-style license.*//*Class: Number	A collection of The Number Object prototype methods.*/Number.extend({	/*	Property: toInt		Returns this number; useful because toInt must work on both Strings and Numbers.	*/	toInt: function(){		return parseInt(this);	},	/*	Property: toFloat		Returns this number as a float; useful because toFloat must work on both Strings and Numbers.	*/	toFloat: function(){		return parseFloat(this);	},	/*	Property: limit		Limits the number.	Arguments:		min - number, minimum value		max - number, maximum value	Returns:		the number in the given limits.	Example:		>(12).limit(2, 6.5)  // returns 6.5		>(-4).limit(2, 6.5)  // returns 2		>(4.3).limit(2, 6.5) // returns 4.3	*/	limit: function(min, max){		return Math.min(max, Math.max(min, this));	},	/*	Property: round		Returns the number rounded to specified precision.	Arguments:		precision - integer, number of digits after the decimal point. Can also be negative or zero (default).	Example:		>12.45.round() // returns 12		>12.45.round(1) // returns 12.5		>12.45.round(-1) // returns 10	Returns:		The rounded number.	*/	round: function(precision){		precision = Math.pow(10, precision || 0);		return Math.round(this * precision) / precision;	},	/*	Property: times		Executes a passed in function the specified number of times	Arguments:		function - the function to be executed on each iteration of the loop	Example:		>(4).times(alert);	*/	times: function(fn){		for (var i = 0; i < this; i++) fn(i);	}});/*Script: Element.js	Contains useful Element prototypes, to be used with the dollar function <$>.License:	MIT-style license.Credits:	- Some functions are inspired by those found in prototype.js <http://prototype.conio.net/> (c) 2005 Sam Stephenson sam [at] conio [dot] net, MIT-style license*//*Class: Element	Custom class to allow all of its methods to be used with any DOM element via the dollar function <$>.*/var Element = new Class({	/*	Property: initialize		Creates a new element of the type passed in.	Arguments:		el - string; the tag name for the element you wish to create. you can also pass in an element reference, in which case it will be extended.		props - object; the properties you want to add to your element.		Accepts the same keys as <Element.setProperties>, but also allows events and styles	Props:		the key styles will be used as setStyles, the key events will be used as addEvents. any other key is used as setProperty.	Example:		(start code)		new Element('a', {			'styles': {				'display': 'block',				'border': '1px solid black'			},			'events': {				'click': function(){					//aaa				},				'mousedown': function(){					//aaa				}			},			'class': 'myClassSuperClass',			'href': 'http://mad4milk.net'		});		(end)	*/	initialize: function(el, props){		if ($type(el) == 'string'){			if (window.ie && props && (props.name || props.type)){				var name = (props.name) ? ' name="' + props.name + '"' : '';				var type = (props.type) ? ' type="' + props.type + '"' : '';				delete props.name;				delete props.type;				el = '<' + el + name + type + '>';			}			el = document.createElement(el);		}		el = $(el);		return (!props || !el) ? el : el.set(props);	}});/*Class: Elements	- Every dom function such as <$$>, or in general every function that returns a collection of nodes in mootools, returns them as an Elements class.	- The purpose of the Elements class is to allow <Element> methods to work also on <Elements> array.	- Elements is also an Array, so it accepts all the <Array> methods.	- Every node of the Elements instance is already extended with <$>.Example:	>$$('myselector').each(function(el){	> //...	>});	some iterations here, $$('myselector') is also an array.	>$$('myselector').setStyle('color', 'red');	every element returned by $$('myselector') also accepts <Element> methods, in this example every element will be made red.*/var Elements = new Class({	initialize: function(elements){		return (elements) ? $extend(elements, this) : this;	}});Elements.extend = function(props){	for (var prop in props){		this.prototype[prop] = props[prop];		this[prop] = $native.generic(prop);	}};/*Section: Utility FunctionsFunction: $	returns the element passed in with all the Element prototypes applied.Arguments:	el - a reference to an actual element or a string representing the id of an elementExample:	>$('myElement') // gets a DOM element by id with all the Element prototypes applied.	>var div = document.getElementById('myElement');	>$(div) //returns an Element also with all the mootools extentions applied.	You'll use this when you aren't sure if a variable is an actual element or an id, as	well as just shorthand for document.getElementById().Returns:	a DOM element or false (if no id was found).Note:	you need to call $ on an element only once to get all the prototypes.	But its no harm to call it multiple times, as it will detect if it has been already extended.*/function $(el){	if (!el) return null;	if (el.htmlElement) return Garbage.collect(el);	if ([window, document].contains(el)) return el;	var type = $type(el);	if (type == 'string'){		el = document.getElementById(el);		type = (el) ? 'element' : false;	}	if (type != 'element') return null;	if (el.htmlElement) return Garbage.collect(el);	if (['object', 'embed'].contains(el.tagName.toLowerCase())) return el;	$extend(el, Element.prototype);	el.htmlElement = function(){};	return Garbage.collect(el);};/*Function: $$	Selects, and extends DOM elements. Elements arrays returned with $$ will also accept all the <Element> methods.	The return type of element methods run through $$ is always an array. If the return array is only made by elements,	$$ will be applied automatically.Arguments:	HTML Collections, arrays of elements, arrays of strings as element ids, elements, strings as selectors.	Any number of the above as arguments are accepted.Note:	if you load <Element.Selectors.js>, $$ will also accept CSS Selectors, otherwise the only selectors supported are tag names.Example:	>$$('a') //an array of all anchor tags on the page	>$$('a', 'b') //an array of all anchor and bold tags on the page	>$$('#myElement') //array containing only the element with id = myElement. (only with <Element.Selectors.js>)	>$$('#myElement a.myClass') //an array of all anchor tags with the class "myClass"	>//within the DOM element with id "myElement" (only with <Element.Selectors.js>)	>$$(myelement, myelement2, 'a', ['myid', myid2, 'myid3'], document.getElementsByTagName('div')) //an array containing:	>// the element referenced as myelement if existing,	>// the element referenced as myelement2 if existing,	>// all the elements with a as tag in the page,	>// the element with id = myid if existing	>// the element with id = myid2 if existing	>// the element with id = myid3 if existing	>// all the elements with div as tag in the pageReturns:	array - array of all the dom elements matched, extended with <$>.  Returns as <Elements>.*/document.getElementsBySelector = document.getElementsByTagName;function $$(){	var elements = [];	for (var i = 0, j = arguments.length; i < j; i++){		var selector = arguments[i];		switch($type(selector)){			case 'element': elements.push(selector);			case 'boolean': break;			case false: break;			case 'string': selector = document.getElementsBySelector(selector, true);			default: elements.extend(selector);		}	}	return $$.unique(elements);};$$.unique = function(array){	var elements = [];	for (var i = 0, l = array.length; i < l; i++){		if (array[i].$included) continue;		var element = $(array[i]);		if (element && !element.$included){			element.$included = true;			elements.push(element);		}	}	for (var n = 0, d = elements.length; n < d; n++) elements[n].$included = null;	return new Elements(elements);};Elements.Multi = function(property){	return function(){		var args = arguments;		var items = [];		var elements = true;		for (var i = 0, j = this.length, returns; i < j; i++){			returns = this[i][property].apply(this[i], args);			if ($type(returns) != 'element') elements = false;			items.push(returns);		};		return (elements) ? $$.unique(items) : items;	};};Element.extend = function(properties){	for (var property in properties){		HTMLElement.prototype[property] = properties[property];		Element.prototype[property] = properties[property];		Element[property] = $native.generic(property);		var elementsProperty = (Array.prototype[property]) ? property + 'Elements' : property;		Elements.prototype[elementsProperty] = Elements.Multi(property);	}};/*Class: Element	Custom class to allow all of its methods to be used with any DOM element via the dollar function <$>.*/Element.extend({	/*	Property: set		you can set events, styles and properties with this shortcut. same as calling new Element.	*/	set: function(props){		for (var prop in props){			var val = props[prop];			switch(prop){				case 'styles': this.setStyles(val); break;				case 'events': if (this.addEvents) this.addEvents(val); break;				case 'properties': this.setProperties(val); break;				default: this.setProperty(prop, val);			}		}		return this;	},	inject: function(el, where){		el = $(el);		switch(where){			case 'before': el.parentNode.insertBefore(this, el); break;			case 'after':				var next = el.getNext();				if (!next) el.parentNode.appendChild(this);				else el.parentNode.insertBefore(this, next);				break;			case 'top':				var first = el.firstChild;				if (first){					el.insertBefore(this, first);					break;				}			default: el.appendChild(this);		}		return this;	},	/*	Property: injectBefore		Inserts the Element before the passed element.	Arguments:		el - an element reference or the id of the element to be injected in.	Example:		>html:		><div id="myElement"></div>		><div id="mySecondElement"></div>		>js:		>$('mySecondElement').injectBefore('myElement');		>resulting html:		><div id="mySecondElement"></div>		><div id="myElement"></div>	*/	injectBefore: function(el){		return this.inject(el, 'before');	},	/*	Property: injectAfter		Same as <Element.injectBefore>, but inserts the element after.	*/	injectAfter: function(el){		return this.inject(el, 'after');	},	/*	Property: injectInside		Same as <Element.injectBefore>, but inserts the element inside.	*/	injectInside: function(el){		return this.inject(el, 'bottom');	},	/*	Property: injectTop		Same as <Element.injectInside>, but inserts the element inside, at the top.	*/	injectTop: function(el){		return this.inject(el, 'top');	},	/*	Property: adopt		Inserts the passed elements inside the Element.	Arguments:		accepts elements references, element ids as string, selectors ($$('stuff')) / array of elements, array of ids as strings and collections.	*/	adopt: function(){		var elements = [];		$each(arguments, function(argument){			elements = elements.concat(argument);		});		$$(elements).inject(this);		return this;	},	/*	Property: remove		Removes the Element from the DOM.	Example:		>$('myElement').remove() //bye bye	*/	remove: function(){		return this.parentNode.removeChild(this);	},	/*	Property: clone		Clones the Element and returns the cloned one.	Arguments:		contents - boolean, when true the Element is cloned with childNodes, default true	Returns:		the cloned element	Example:		>var clone = $('myElement').clone().injectAfter('myElement');		>//clones the Element and append the clone after the Element.	*/	clone: function(contents){		var el = $(this.cloneNode(contents !== false));		if (!el.$events) return el;		el.$events = {};		for (var type in this.$events) el.$events[type] = {			'keys': $A(this.$events[type].keys),			'values': $A(this.$events[type].values)		};		return el.removeEvents();	},	/*	Property: replaceWith		Replaces the Element with an element passed.	Arguments:		el - a string representing the element to be injected in (myElementId, or div), or an element reference.		If you pass div or another tag, the element will be created.	Returns:		the passed in element	Example:

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品乱码久久久久久| 亚洲激情网站免费观看| 日韩美女主播在线视频一区二区三区 | 欧美tk—视频vk| 欧美精品久久天天躁| 欧美三级资源在线| 欧美美女bb生活片| 日韩一区二区三区av| 精品三级av在线| 26uuu欧美| 国产免费久久精品| 亚洲日本在线视频观看| 亚洲综合视频网| 五月天激情综合| 免费视频一区二区| 精品亚洲国内自在自线福利| 国产呦精品一区二区三区网站| 精品在线一区二区| 国产成人aaaa| 色综合久久久久| 欧美精品三级日韩久久| 精品国产麻豆免费人成网站| 国产亚洲精品7777| 中文字幕亚洲欧美在线不卡| 亚洲精品久久嫩草网站秘色| 视频一区在线播放| 国产一区 二区 三区一级| 成人av集中营| 欧美私人免费视频| 日韩精品一区二区三区视频在线观看 | 久久九九全国免费| 自拍视频在线观看一区二区| 午夜久久久久久久久久一区二区| 免费在线观看一区| 成人福利电影精品一区二区在线观看| 91网站最新网址| 欧美一区二区三区四区五区| 国产日韩欧美电影| 亚洲最大成人网4388xx| 久久99国产精品久久99 | 337p亚洲精品色噜噜噜| 久久久亚洲午夜电影| 一区二区三区在线视频观看| 久久99热国产| 91官网在线观看| 久久你懂得1024| 亚洲综合色婷婷| 国产高清在线精品| 精品视频999| 国产日韩欧美精品一区| 性久久久久久久| 成人av动漫在线| 日韩美女视频在线| 亚洲日穴在线视频| 99re这里都是精品| 3d成人动漫网站| 亚洲精品久久7777| 国产一区二区在线视频| 欧美专区在线观看一区| 2欧美一区二区三区在线观看视频| 亚洲美女视频在线观看| 国产乱子轮精品视频| 欧美日韩视频一区二区| 一区在线播放视频| 九九视频精品免费| 欧美日韩国产高清一区| 中文字幕在线观看一区| 精品一区二区三区欧美| 欧美日韩免费不卡视频一区二区三区| 国产人久久人人人人爽| 美女尤物国产一区| 欧洲国内综合视频| 中文字幕亚洲成人| 国产在线乱码一区二区三区| 欧美日韩精品福利| 亚洲精品免费播放| 99精品一区二区| 国产亚洲精品aa午夜观看| 久久精品国产亚洲a| 欧美日韩大陆一区二区| 亚洲人精品午夜| av在线播放成人| 国产精品网站导航| 国产成人aaa| 国产欧美一区在线| 国产精品一区二区三区99| 欧美一二区视频| 日本人妖一区二区| 欧美区一区二区三区| 亚洲制服欧美中文字幕中文字幕| 99久久久无码国产精品| 欧美激情在线观看视频免费| 国产精品一区一区三区| 精品久久久久久久久久久久久久久| 日韩电影在线观看网站| 欧美区在线观看| 日韩高清一区二区| 欧美老女人第四色| 天堂在线一区二区| 91麻豆精品国产91久久久久| 丝袜诱惑亚洲看片| 欧美日韩高清一区二区不卡| 亚洲五月六月丁香激情| 欧美日韩一区二区三区在线看| 亚洲黄色免费电影| 欧美日韩中字一区| 午夜精品在线视频一区| 欧美美女直播网站| 日韩成人免费看| 日韩一区二区免费在线电影| 日韩精品乱码av一区二区| 欧美丰满少妇xxxxx高潮对白| 婷婷一区二区三区| 欧美一区二区啪啪| 国产一区二区三区免费观看| 久久先锋影音av鲁色资源网| 粉嫩av一区二区三区在线播放 | 美女视频黄免费的久久 | 中文字幕在线一区| 972aa.com艺术欧美| 亚洲午夜在线视频| 欧美一区二区三区人| 久久精品国产色蜜蜜麻豆| 久久久久久久久蜜桃| 成人av动漫网站| 亚洲电影欧美电影有声小说| 欧美不卡在线视频| 高清av一区二区| 亚洲视频一二三| 69堂国产成人免费视频| 韩国毛片一区二区三区| 国产精品麻豆视频| 欧美亚洲一区二区三区四区| 美女一区二区在线观看| 日本一区二区电影| 欧美日韩免费观看一区三区| 久久电影网电视剧免费观看| 欧美国产日本韩| 精品婷婷伊人一区三区三| 韩国v欧美v亚洲v日本v| 亚洲欧美综合另类在线卡通| 欧美日韩日日摸| 国产老妇另类xxxxx| 亚洲精品一二三四区| 欧美成人a在线| 色综合久久天天综合网| 美女视频一区在线观看| 18欧美亚洲精品| 日韩欧美国产综合| 99精品黄色片免费大全| 免费成人在线观看| 亚洲视频一区在线观看| 精品福利一区二区三区免费视频| 91色porny| 国产精品一区二区男女羞羞无遮挡| 亚洲精品国产一区二区精华液| 精品欧美久久久| 91久久精品一区二区三区| 激情小说欧美图片| 夜夜嗨av一区二区三区| 欧美国产综合色视频| 91麻豆精品国产91久久久使用方法| av日韩在线网站| 久久99在线观看| 亚洲成a人在线观看| 日韩一区有码在线| 久久久美女毛片| 91精品国产综合久久蜜臀| 91同城在线观看| 国产成人在线观看免费网站| 视频一区二区三区中文字幕| 中文字幕一区二区在线播放 | 亚洲一区二区三区视频在线| 中文字幕二三区不卡| 精品99久久久久久| 91 com成人网| 欧美在线一二三| 99国产精品99久久久久久| 国产成人免费视频网站| 久久99精品久久只有精品| 视频一区国产视频| 一区二区三区四区视频精品免费| 久久精品夜色噜噜亚洲a∨| 欧美一区中文字幕| 欧美性生活一区| 日本高清视频一区二区| 成人av在线一区二区| 国产成人午夜高潮毛片| 老司机免费视频一区二区| 秋霞av亚洲一区二区三| 婷婷亚洲久悠悠色悠在线播放| 一区二区三区在线免费| 亚洲欧美偷拍三级| 亚洲欧洲国产日韩| 中文字幕制服丝袜一区二区三区| 欧美高清一级片在线观看| 亚洲国产成人自拍| 久久精品人人爽人人爽| 久久久久久久网| 国产日韩欧美综合在线|