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

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

?? mootools.svn.js

?? 基于MOOnTOOLs所開發(fā)的一個導(dǎo)航攔僅供參考
?? JS
?? 第 1 頁 / 共 5 頁
字號:
	/*	Property: callChain		Executes the first function of the Chain instance stack, then removes it. The first function will then become the second.	*/	callChain: function(){		if (this.chains && this.chains.length) this.chains.shift().delay(10, this);	},	/*	Property: clearChain		Clears the stack of a Chain instance.	*/	clearChain: function(){		this.chains = [];	}});/*Class: Events	An "Utility" Class. Its methods can be implemented with <Class.implement> into any <Class>.	In <Fx.Base> Class, for example, is used to give the possibility add any number of functions to the Effects events, like onComplete, onStart, onCancel.	Events in a Class that implements <Events> can be either added as an option, or with addEvent. Never with .options.onEventName.Example:	(start code)	var myFx = new Fx.Style('element', 'opacity').addEvent('onComplete', function(){		alert('the effect is completed');	}).addEvent('onComplete', function(){		alert('I told you the effect is completed');	});	myFx.start(0,1);	//upon completion it will display the 2 alerts, in order.	(end)Implementing:	This class can be implemented into other classes to add the functionality to them.	Goes well with the <Options> class.Example:	(start code)	var Widget = new Class({		initialize: function(){},		finish: function(){			this.fireEvent('onComplete');		}	});	Widget.implement(new Events);	//later...	var myWidget = new Widget();	myWidget.addEvent('onComplete', myfunction);	(end)*/var Events = new Class({	/*	Property: addEvent		adds an event to the stack of events of the Class instance.	Arguments:		type - string; the event name (e.g. 'onComplete')		fn - function to execute	*/	addEvent: function(type, fn){		if (fn != Class.empty){			this.$events = this.$events || {};			this.$events[type] = this.$events[type] || [];			this.$events[type].include(fn);		}		return this;	},	/*	Property: fireEvent		fires all events of the specified type in the Class instance.	Arguments:		type - string; the event name (e.g. 'onComplete')		args - array or single object; arguments to pass to the function; if more than one argument, must be an array		delay - (integer) delay (in ms) to wait to execute the event	Example:	(start code)	var Widget = new Class({		initialize: function(arg1, arg2){			...			this.fireEvent("onInitialize", [arg1, arg2], 50);		}	});	Widget.implement(new Events);	(end)	*/	fireEvent: function(type, args, delay){		if (this.$events && this.$events[type]){			this.$events[type].each(function(fn){				fn.create({'bind': this, 'delay': delay, 'arguments': args})();			}, this);		}		return this;	},	/*	Property: removeEvent		removes an event from the stack of events of the Class instance.	Arguments:		type - string; the event name (e.g. 'onComplete')		fn - function that was added	*/	removeEvent: function(type, fn){		if (this.$events && this.$events[type]) this.$events[type].remove(fn);		return this;	}});/*Class: Options	An "Utility" Class. Its methods can be implemented with <Class.implement> into any <Class>.	Used to automate the options settings, also adding Class <Events> when the option begins with on.	Example:		(start code)		var Widget = new Class({			options: {				color: '#fff',				size: {					width: 100					height: 100				}			},			initialize: function(options){				this.setOptions(options);			}		});		Widget.implement(new Options);		//later...		var myWidget = new Widget({			color: '#f00',			size: {				width: 200			}		});		//myWidget.options = {color: #f00, size: {width: 200, height: 100}}		(end)*/var Options = new Class({	/*	Property: setOptions		sets this.options	Arguments:		defaults - object; the default set of options		options - object; the user entered options. can be empty too.	Note:		if your Class has <Events> implemented, every option beginning with on, followed by a capital letter (onComplete) becomes an Class instance event.	*/	setOptions: function(){		this.options = $merge.apply(null, [this.options].extend(arguments));		if (this.addEvent){			for (var option in this.options){				if ($type(this.options[option] == 'function') && (/^on[A-Z]/).test(option)) this.addEvent(option, this.options[option]);			}		}		return this;	}});/*Script: Array.js	Contains Array prototypes, <$A>, <$each>License:	MIT-style license.*//*Class: Array	A collection of The Array Object prototype methods.*///custom methodsArray.extend({	/*	Property: forEach		Iterates through an array; This method is only available for browsers without native *forEach* support.		For more info see <http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Global_Objects:Array:forEach>		*forEach* executes the provided function (callback) once for each element present in the array. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values.	Arguments:		fn - function to execute with each item in the array; passed the item and the index of that item in the array		bind - the object to bind "this" to (see <Function.bind>)	Example:		>['apple','banana','lemon'].each(function(item, index){		>	alert(index + " = " + item); //alerts "0 = apple" etc.		>}, bindObj); //optional second arg for binding, not used here	*/	forEach: function(fn, bind){		for (var i = 0, j = this.length; i < j; i++) fn.call(bind, this[i], i, this);	},	/*	Property: filter		This method is provided only for browsers without native *filter* support.		For more info see <http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Objects:Array:filter>		*filter* calls a provided callback function once for each element in an array, and constructs a new array of all the values for which callback returns a true value. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values. Array elements which do not pass the callback test are simply skipped, and are not included in the new array.	Arguments:		fn - function to execute with each item in the array; passed the item and the index of that item in the array		bind - the object to bind "this" to (see <Function.bind>)	Example:		>var biggerThanTwenty = [10,3,25,100].filter(function(item, index){		> return item > 20;		>});		>//biggerThanTwenty = [25,100]	*/	filter: function(fn, bind){		var results = [];		for (var i = 0, j = this.length; i < j; i++){			if (fn.call(bind, this[i], i, this)) results.push(this[i]);		}		return results;	},	/*	Property: map		This method is provided only for browsers without native *map* support.		For more info see <http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Global_Objects:Array:map>		*map* calls a provided callback function once for each element in an array, in order, and constructs a new array from the results. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values.	Arguments:		fn - function to execute with each item in the array; passed the item and the index of that item in the array		bind - the object to bind "this" to (see <Function.bind>)	Example:		>var timesTwo = [1,2,3].map(function(item, index){		> return item*2;		>});		>//timesTwo = [2,4,6];	*/	map: function(fn, bind){		var results = [];		for (var i = 0, j = this.length; i < j; i++) results[i] = fn.call(bind, this[i], i, this);		return results;	},	/*	Property: every		This method is provided only for browsers without native *every* support.		For more info see <http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Global_Objects:Array:every>		*every* executes the provided callback function once for each element present in the array until it finds one where callback returns a false value. If such an element is found, the every method immediately returns false. Otherwise, if callback returned a true value for all elements, every will return true. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values.	Arguments:		fn - function to execute with each item in the array; passed the item and the index of that item in the array		bind - the object to bind "this" to (see <Function.bind>)	Example:		>var areAllBigEnough = [10,4,25,100].every(function(item, index){		> return item > 20;		>});		>//areAllBigEnough = false	*/	every: function(fn, bind){		for (var i = 0, j = this.length; i < j; i++){			if (!fn.call(bind, this[i], i, this)) return false;		}		return true;	},	/*	Property: some		This method is provided only for browsers without native *some* support.		For more info see <http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Global_Objects:Array:some>		*some* executes the callback function once for each element present in the array until it finds one where callback returns a true value. If such an element is found, some immediately returns true. Otherwise, some returns false. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values.	Arguments:		fn - function to execute with each item in the array; passed the item and the index of that item in the array		bind - the object to bind "this" to (see <Function.bind>)	Example:		>var isAnyBigEnough = [10,4,25,100].some(function(item, index){		> return item > 20;		>});		>//isAnyBigEnough = true	*/	some: function(fn, bind){		for (var i = 0, j = this.length; i < j; i++){			if (fn.call(bind, this[i], i, this)) return true;		}		return false;	},	/*	Property: indexOf		This method is provided only for browsers without native *indexOf* support.		For more info see <http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Global_Objects:Array:indexOf>		*indexOf* compares a search element to elements of the Array using strict equality (the same method used by the ===, or triple-equals, operator).	Arguments:		item - any type of object; element to locate in the array		from - integer; optional; the index of the array at which to begin the search (defaults to 0)	Example:		>['apple','lemon','banana'].indexOf('lemon'); //returns 1		>['apple','lemon'].indexOf('banana'); //returns -1	*/	indexOf: function(item, from){		var len = this.length;		for (var i = (from < 0) ? Math.max(0, len + from) : from || 0; i < len; i++){			if (this[i] === item) return i;		}		return -1;	},	/*	Property: each		Same as <Array.forEach>.	Arguments:		fn - function to execute with each item in the array; passed the item and the index of that item in the array		bind - optional, the object that the "this" of the function will refer to.	Example:		>var Animals = ['Cat', 'Dog', 'Coala'];		>Animals.each(function(animal){		>	document.write(animal)		>});	*/	/*	Property: copy		returns a copy of the array.	Returns:		a new array which is a copy of the current one.	Arguments:		start - integer; optional; the index where to start the copy, default is 0. If negative, it is taken as the offset from the end of the array.		length - integer; optional; the number of elements to copy. By default, copies all elements from start to the end of the array.	Example:		>var letters = ["a","b","c"];		>var copy = letters.copy();		// ["a","b","c"] (new instance)	*/	copy: function(start, length){		start = start || 0;		if (start < 0) start = this.length + start;		length = length || (this.length - start);		var newArray = [];		for (var i = 0; i < length; i++) newArray[i] = this[start++];		return newArray;	},	/*	Property: remove		Removes all occurrences of an item from the array.	Arguments:		item - the item to remove	Returns:		the Array with all occurrences of the item removed.	Example:		>["1","2","3","2"].remove("2") // ["1","3"];	*/	remove: function(item){		var i = 0;		var len = this.length;		while (i < len){			if (this[i] === item){				this.splice(i, 1);				len--;			} else {				i++;			}		}		return this;	},	/*	Property: contains		Tests an array for the presence of an item.	Arguments:		item - the item to search for in the array.		from - integer; optional; the index at which to begin the search, default is 0. If negative, it is taken as the offset from the end of the array.	Returns:		true - the item was found		false - it wasn't	Example:		>["a","b","c"].contains("a"); // true		>["a","b","c"].contains("d"); // false	*/	contains: function(item, from){		return this.indexOf(item, from) != -1;	},	/*	Property: associate		Creates an object with key-value pairs based on the array of keywords passed in		and the current content of the array.	Arguments:		keys - the array of keywords.	Example:		(start code)		var Animals = ['Cat', 'Dog', 'Coala', 'Lizard'];		var Speech = ['Miao', 'Bau', 'Fruuu', 'Mute'];		var Speeches = Animals.associate(Speech);		//Speeches['Miao'] is now Cat.		//Speeches['Bau'] is now Dog.		//...		(end)	*/	associate: function(keys){		var obj = {}, length = Math.min(this.length, keys.length);		for (var i = 0; i < length; i++) obj[keys[i]] = this[i];		return obj;	},	/*	Property: extend		Extends an array with another one.	Arguments:		array - the array to extend ours with	Example:		>var Animals = ['Cat', 'Dog', 'Coala'];		>Animals.extend(['Lizard']);		>//Animals is now: ['Cat', 'Dog', 'Coala', 'Lizard'];	*/	extend: function(array){		for (var i = 0, j = array.length; i < j; i++) this.push(array[i]);		return this;	},	/*	Property: merge		merges an array in another array, without duplicates. (case- and type-sensitive)	Arguments:		array - the array to merge from.	Example:		>['Cat','Dog'].merge(['Dog','Coala']); //returns ['Cat','Dog','Coala']	*/	merge: function(array){		for (var i = 0, l = array.length; i < l; i++) this.include(array[i]);		return this;	},	/*	Property: include		includes the passed in element in the array, only if its not already present. (case- and type-sensitive)	Arguments:		item - item to add to the array (if not present)	Example:		>['Cat','Dog'].include('Dog'); //returns ['Cat','Dog']		>['Cat','Dog'].include('Coala'); //returns ['Cat','Dog','Coala']	*/	include: function(item){		if (!this.contains(item)) this.push(item);		return this;	},	/*

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕一区二区在线观看| 国产老女人精品毛片久久| 图片区日韩欧美亚洲| 日韩高清一区二区| 国产一区欧美一区| 99精品久久只有精品| 欧美日韩在线播放三区四区| 日韩三级视频在线观看| 欧美激情在线免费观看| 亚洲成人av一区二区三区| 免费在线看一区| 不卡一区二区三区四区| 欧美视频一二三区| 久久久夜色精品亚洲| 亚洲乱码中文字幕| 精品亚洲国内自在自线福利| 99久久99久久精品免费观看| 欧美日韩1区2区| 欧美国产精品一区二区| 亚洲aaa精品| 成人久久视频在线观看| 欧美亚洲国产一区二区三区va| www久久精品| 亚洲综合一二区| 国产成人综合亚洲网站| 欧美日韩不卡一区| 日本一区二区电影| 奇米综合一区二区三区精品视频 | 日韩午夜小视频| 亚洲视频综合在线| 狠狠色综合播放一区二区| 91久久人澡人人添人人爽欧美| 精品99久久久久久| 亚洲第一狼人社区| 成人97人人超碰人人99| 精品粉嫩超白一线天av| 亚洲综合在线观看视频| 东方aⅴ免费观看久久av| 日韩一区二区三| 一区二区三区视频在线看| 国产成人综合网| 日韩欧美你懂的| 亚洲在线一区二区三区| www.一区二区| 久久老女人爱爱| 9i看片成人免费高清| 日韩精品一区二区在线观看| 亚洲午夜激情av| 色一情一乱一乱一91av| 亚洲国产精品激情在线观看| 紧缚捆绑精品一区二区| 欧美美女一区二区在线观看| 亚洲精品久久久久久国产精华液| 国产福利一区在线观看| 精品国产网站在线观看| 日本午夜一区二区| 欧美一a一片一级一片| 亚洲日本在线天堂| 97久久超碰国产精品电影| 国产人久久人人人人爽| 国模无码大尺度一区二区三区| 欧美一区二区三区视频在线| 亚洲午夜私人影院| 91久久免费观看| 亚洲乱码精品一二三四区日韩在线| 成年人网站91| 亚洲日本欧美天堂| av在线播放一区二区三区| 国产精品乱码一区二区三区软件 | 日韩欧美另类在线| 日韩成人一区二区三区在线观看| 欧美无砖专区一中文字| 亚洲综合一区在线| 欧美视频一区二| 日韩精品免费视频人成| 欧美电影一区二区| 日韩黄色在线观看| 欧美疯狂做受xxxx富婆| 男人的j进女人的j一区| 日韩一区二区在线观看视频播放| 蜜臀久久99精品久久久久久9 | 国产在线麻豆精品观看| 精品国产乱码久久| 国产精品香蕉一区二区三区| 国产日韩精品一区二区三区| 成人在线视频一区二区| 国产精品成人免费在线| 色综合天天综合网天天狠天天 | 欧美日韩视频在线观看一区二区三区| 亚洲精品成人少妇| 欧美日韩一区二区在线观看视频 | 欧美一区二区大片| 精品亚洲aⅴ乱码一区二区三区| 久久综合色综合88| 国产+成+人+亚洲欧洲自线| 国产精品久久久久久久第一福利 | 日韩精品亚洲一区二区三区免费| 日韩视频免费观看高清完整版在线观看 | 国产精品影视网| 国产精品欧美经典| 在线观看网站黄不卡| 日韩电影免费一区| 欧美激情艳妇裸体舞| 91污在线观看| 日韩精品一二三四| 国产日韩综合av| 在线一区二区三区四区五区| 爽好多水快深点欧美视频| 精品福利一区二区三区| 国产99精品在线观看| 亚洲精选视频在线| 7799精品视频| 国产91精品入口| 午夜欧美电影在线观看| 久久久一区二区三区捆绑**| 色婷婷综合在线| 六月丁香婷婷久久| 国产精品久久久久影院老司| 欧美三级中文字幕| 国内久久婷婷综合| 亚洲乱码日产精品bd| 日韩久久精品一区| 91在线国产福利| 久久国内精品自在自线400部| 亚洲国产成人私人影院tom| 欧美偷拍一区二区| 国产福利不卡视频| 亚洲超碰精品一区二区| 国产日产欧美精品一区二区三区| 色婷婷av一区二区三区gif| 日本不卡123| 一区二区三区在线播放| 久久综合九色综合欧美98| 色欧美片视频在线观看在线视频| 九色综合国产一区二区三区| 亚洲欧美色一区| 精品国产91乱码一区二区三区| 欧美在线视频不卡| 国产成人综合亚洲网站| 免费视频最近日韩| 亚洲精品综合在线| 久久久99久久精品欧美| 欧美久久久久中文字幕| 99视频一区二区三区| 久久99精品久久只有精品| 一区二区高清视频在线观看| 久久久不卡网国产精品一区| 91精品国产综合久久久蜜臀图片| 99国产精品视频免费观看| 国产乱人伦偷精品视频不卡| 视频一区二区三区入口| 亚洲免费观看高清完整版在线| 久久久久久综合| 欧美一区二区三区在线观看视频| 一本色道a无线码一区v| 粉嫩aⅴ一区二区三区四区五区| 日韩国产精品91| 亚洲一二三四在线观看| 国产精品久久久久影视| 久久久久久久性| 精品日韩欧美在线| 欧美一区二区视频网站| 欧美性猛片aaaaaaa做受| 91在线视频在线| www.99精品| 国产99久久久国产精品免费看| 久久国产婷婷国产香蕉| 美腿丝袜亚洲一区| 亚洲成人综合在线| 亚洲激情六月丁香| 亚洲三级理论片| 中文字幕在线一区二区三区| 国产精品理伦片| 欧美国产97人人爽人人喊| 国产午夜精品美女毛片视频| 久久九九影视网| 国产三级三级三级精品8ⅰ区| 欧美精品一区二区三区很污很色的| 欧美一区二区播放| 欧美一级片在线| 日韩精品一区在线| 日韩一区二区在线观看| 日韩一区二区视频| 日韩一区二区三区在线| 欧美一区二区三区精品| 欧美一区二区三区色| 欧美大肚乱孕交hd孕妇| 欧美tickle裸体挠脚心vk| 精品成人免费观看| 久久久91精品国产一区二区三区| 国产偷国产偷精品高清尤物 | av电影在线观看一区| av在线综合网| 91久久奴性调教| 欧美剧情片在线观看| 欧美一级高清片| 久久久天堂av| 中文字幕第一区第二区| 亚洲摸摸操操av| 午夜精品一区二区三区三上悠亚|