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

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

?? html.js

?? 圖書管理系統(tǒng)包括圖書的增加、刪除、修改等功能
?? JS
?? 第 1 頁 / 共 2 頁
字號:
/*	Copyright (c) 2004-2006, The Dojo Foundation	All Rights Reserved.	Licensed under the Academic Free License version 2.1 or above OR the	modified BSD license. For more information on Dojo licensing, see:		http://dojotoolkit.org/community/licensing.shtml*/dojo.provide("dojo.fx.html");dojo.require("dojo.style");dojo.require("dojo.math.curves");dojo.require("dojo.lang.func");dojo.require("dojo.animation");dojo.require("dojo.event.*");dojo.require("dojo.graphics.color");dojo.deprecated("dojo.fx.html", "use dojo.lfx.html instead", "0.4");dojo.fx.duration = 300;dojo.fx.html._makeFadeable = function(node){	if(dojo.render.html.ie){		// only set the zoom if the "tickle" value would be the same as the		// default		if( (node.style.zoom.length == 0) &&			(dojo.style.getStyle(node, "zoom") == "normal") ){			// make sure the node "hasLayout"			// NOTE: this has been tested with larger and smaller user-set text			// sizes and works fine			node.style.zoom = "1";			// node.style.zoom = "normal";		}		// don't set the width to auto if it didn't already cascade that way.		// We don't want to f anyones designs		if(	(node.style.width.length == 0) &&			(dojo.style.getStyle(node, "width") == "auto") ){			node.style.width = "auto";		}	}}dojo.fx.html.fadeOut = function(node, duration, callback, dontPlay) {	return dojo.fx.html.fade(node, duration, dojo.style.getOpacity(node), 0, callback, dontPlay);};dojo.fx.html.fadeIn = function(node, duration, callback, dontPlay) {	return dojo.fx.html.fade(node, duration, dojo.style.getOpacity(node), 1, callback, dontPlay);};dojo.fx.html.fadeHide = function(node, duration, callback, dontPlay) {	node = dojo.byId(node);	if(!duration) { duration = 150; } // why not have a default?	return dojo.fx.html.fadeOut(node, duration, function(node) {		node.style.display = "none";		if(typeof callback == "function") { callback(node); }	});};dojo.fx.html.fadeShow = function(node, duration, callback, dontPlay) {	node = dojo.byId(node);	if(!duration) { duration = 150; } // why not have a default?	node.style.display = "block";	return dojo.fx.html.fade(node, duration, 0, 1, callback, dontPlay);};dojo.fx.html.fade = function(node, duration, startOpac, endOpac, callback, dontPlay) {	node = dojo.byId(node);	dojo.fx.html._makeFadeable(node);	var anim = new dojo.animation.Animation(		new dojo.math.curves.Line([startOpac],[endOpac]),		duration||dojo.fx.duration, 0);	dojo.event.connect(anim, "onAnimate", function(e) {		dojo.style.setOpacity(node, e.x);	});	if(callback) {		dojo.event.connect(anim, "onEnd", function(e) {			callback(node, anim);		});	}	if(!dontPlay) { anim.play(true); }	return anim;};dojo.fx.html.slideTo = function(node, duration, endCoords, callback, dontPlay) {	if(!dojo.lang.isNumber(duration)) {		var tmp = duration;		duration = endCoords;		endCoords = tmp;	}	node = dojo.byId(node);	var top = node.offsetTop;	var left = node.offsetLeft;	var pos = dojo.style.getComputedStyle(node, 'position');	if (pos == 'relative' || pos == 'static') {		top = parseInt(dojo.style.getComputedStyle(node, 'top')) || 0;		left = parseInt(dojo.style.getComputedStyle(node, 'left')) || 0;	}	return dojo.fx.html.slide(node, duration, [left, top],		endCoords, callback, dontPlay);};dojo.fx.html.slideBy = function(node, duration, coords, callback, dontPlay) {	if(!dojo.lang.isNumber(duration)) {		var tmp = duration;		duration = coords;		coords = tmp;	}	node = dojo.byId(node);	var top = node.offsetTop;	var left = node.offsetLeft;	var pos = dojo.style.getComputedStyle(node, 'position');	if (pos == 'relative' || pos == 'static') {		top = parseInt(dojo.style.getComputedStyle(node, 'top')) || 0;		left = parseInt(dojo.style.getComputedStyle(node, 'left')) || 0;	}	return dojo.fx.html.slideTo(node, duration, [left+coords[0], top+coords[1]],		callback, dontPlay);};dojo.fx.html.slide = function(node, duration, startCoords, endCoords, callback, dontPlay) {	if(!dojo.lang.isNumber(duration)) {		var tmp = duration;		duration = endCoords;		endCoords = startCoords;		startCoords = tmp;	}	node = dojo.byId(node);	if (dojo.style.getComputedStyle(node, 'position') == 'static') {		node.style.position = 'relative';	}	var anim = new dojo.animation.Animation(		new dojo.math.curves.Line(startCoords, endCoords),		duration||dojo.fx.duration, 0);	dojo.event.connect(anim, "onAnimate", function(e) {		with( node.style ) {			left = e.x + "px";			top = e.y + "px";		}	});	if(callback) {		dojo.event.connect(anim, "onEnd", function(e) {			callback(node, anim);		});	}	if(!dontPlay) { anim.play(true); }	return anim;};// Fade from startColor to the node's background colordojo.fx.html.colorFadeIn = function(node, duration, startColor, delay, callback, dontPlay) {	if(!dojo.lang.isNumber(duration)) {		var tmp = duration;		duration = startColor;		startColor = tmp;	}	node = dojo.byId(node);	var color = dojo.style.getBackgroundColor(node);	var bg = dojo.style.getStyle(node, "background-color").toLowerCase();	var wasTransparent = bg == "transparent" || bg == "rgba(0, 0, 0, 0)";	while(color.length > 3) { color.pop(); }	var rgb = new dojo.graphics.color.Color(startColor).toRgb();	var anim = dojo.fx.html.colorFade(node, duration||dojo.fx.duration, startColor, color, callback, true);	dojo.event.connect(anim, "onEnd", function(e) {		if( wasTransparent ) {			node.style.backgroundColor = "transparent";		}	});	if( delay > 0 ) {		node.style.backgroundColor = "rgb(" + rgb.join(",") + ")";		if(!dontPlay) { setTimeout(function(){anim.play(true)}, delay); }	} else {		if(!dontPlay) { anim.play(true); }	}	return anim;};// alias for (probably?) common use/terminologydojo.fx.html.highlight = dojo.fx.html.colorFadeIn;dojo.fx.html.colorFadeFrom = dojo.fx.html.colorFadeIn;// Fade from node's background color to endColordojo.fx.html.colorFadeOut = function(node, duration, endColor, delay, callback, dontPlay) {	if(!dojo.lang.isNumber(duration)) {		var tmp = duration;		duration = endColor;		endColor = tmp;	}	node = dojo.byId(node);	var color = new dojo.graphics.color.Color(dojo.style.getBackgroundColor(node)).toRgb();	var rgb = new dojo.graphics.color.Color(endColor).toRgb();	var anim = dojo.fx.html.colorFade(node, duration||dojo.fx.duration, color, rgb, callback, delay > 0 || dontPlay);	if( delay > 0 ) {		node.style.backgroundColor = "rgb(" + color.join(",") + ")";		if(!dontPlay) { setTimeout(function(){anim.play(true)}, delay); }	}	return anim;};// FIXME: not sure which name is better. an alias here may be bad.dojo.fx.html.unhighlight = dojo.fx.html.colorFadeOut;dojo.fx.html.colorFadeTo = dojo.fx.html.colorFadeOut;// Fade node background from startColor to endColordojo.fx.html.colorFade = function(node, duration, startColor, endColor, callback, dontPlay) {	if(!dojo.lang.isNumber(duration)) {		var tmp = duration;		duration = endColor;		endColor = startColor;		startColor = tmp;	}	node = dojo.byId(node);	var startRgb = new dojo.graphics.color.Color(startColor).toRgb();	var endRgb = new dojo.graphics.color.Color(endColor).toRgb();	var anim = new dojo.animation.Animation(		new dojo.math.curves.Line(startRgb, endRgb),		duration||dojo.fx.duration, 0);	dojo.event.connect(anim, "onAnimate", function(e) {		node.style.backgroundColor = "rgb(" + e.coordsAsInts().join(",") + ")";	});	if(callback) {		dojo.event.connect(anim, "onEnd", function(e) {			callback(node, anim);		});	}	if( !dontPlay ) { anim.play(true); }	return anim;};dojo.fx.html.wipeIn = function(node, duration, callback, dontPlay) {	node = dojo.byId(node);	var overflow = dojo.style.getStyle(node, "overflow");	if(overflow == "visible") {		node.style.overflow = "hidden";	}	node.style.height = 0;	dojo.style.show(node);	var anim = dojo.fx.html.wipe(node, duration, 0, node.scrollHeight, null, true);	dojo.event.connect(anim, "onEnd", function() {		node.style.overflow = overflow;		node.style.visibility = "";		node.style.height = "auto";		if(callback) { callback(node, anim); }	});	if(!dontPlay) { anim.play(); }	return anim;}dojo.fx.html.wipeOut = function(node, duration, callback, dontPlay) {	node = dojo.byId(node);	var overflow = dojo.style.getStyle(node, "overflow");	if(overflow == "visible") {		node.style.overflow = "hidden";	}	var anim = dojo.fx.html.wipe(node, duration, node.offsetHeight, 0, null, true);	dojo.event.connect(anim, "onEnd", function() {		dojo.style.hide(node);		node.style.visibility = "hidden";		node.style.overflow = overflow;		if(callback) { callback(node, anim); }	});	if(!dontPlay) { anim.play(); }	return anim;}dojo.fx.html.wipe = function(node, duration, startHeight, endHeight, callback, dontPlay) {	node = dojo.byId(node);	var anim = new dojo.animation.Animation([[startHeight], [endHeight]], duration||dojo.fx.duration, 0);	dojo.event.connect(anim, "onAnimate", function(e) {		node.style.height = e.x + "px";	});	dojo.event.connect(anim, "onEnd", function() {		if(callback) { callback(node, anim); }	});	if(!dontPlay) { anim.play(); }	return anim;}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色女孩综合影院| 日日夜夜免费精品| 丝袜美腿一区二区三区| 国产在线麻豆精品观看| 91在线国内视频| 久久日韩精品一区二区五区| 亚洲在线免费播放| jiyouzz国产精品久久| 欧美成人性福生活免费看| 亚洲一区二区三区四区在线| 成人app网站| 久久久久久9999| 狠狠色丁香婷综合久久| 欧美日韩不卡在线| 亚洲男人的天堂av| va亚洲va日韩不卡在线观看| 久久久91精品国产一区二区精品| 丝袜美腿一区二区三区| 欧美性猛交xxxx乱大交退制版| 国产精品福利一区| 懂色av一区二区三区免费观看| 久久一二三国产| 久久超碰97人人做人人爱| 91精品久久久久久久久99蜜臂| 亚洲一区二区三区三| 成人av集中营| 国产精品久久久久影院亚瑟| 国产成人在线视频免费播放| 久久精品亚洲精品国产欧美kt∨| 国内精品伊人久久久久av影院 | 亚洲国产精品成人综合色在线婷婷| 日日摸夜夜添夜夜添亚洲女人| 欧美精品一卡二卡| 日韩专区一卡二卡| 日韩手机在线导航| 国产一区二区中文字幕| 国产日韩精品一区| 粉嫩aⅴ一区二区三区四区| 国产精品情趣视频| 国产91综合网| 亚洲免费观看视频| 欧洲色大大久久| 青青草原综合久久大伊人精品| 91精品国产综合久久久久久| 久久精品国产色蜜蜜麻豆| 久久综合999| 成人高清免费在线播放| 亚洲天堂av老司机| 欧美精品色一区二区三区| 蜜臀久久久99精品久久久久久| 欧美r级在线观看| 丁香亚洲综合激情啪啪综合| 中文字幕在线播放不卡一区| 欧美午夜理伦三级在线观看| 免费人成精品欧美精品| 久久嫩草精品久久久精品| 国产91精品一区二区| 一区二区三区在线不卡| 欧美成人乱码一区二区三区| 成人免费视频视频| 五月天国产精品| 国产丝袜欧美中文另类| 欧美影视一区在线| 国产精品一品视频| 亚洲v中文字幕| 国产欧美1区2区3区| 欧美亚洲动漫另类| 国产精品羞羞答答xxdd| 亚洲成人福利片| 中文字幕第一区| 欧美精品vⅰdeose4hd| 波多野结衣视频一区| 男女男精品视频网| 亚洲美女在线国产| 久久精品亚洲麻豆av一区二区 | 欧美性做爰猛烈叫床潮| 久草热8精品视频在线观看| 亚洲视频在线观看一区| 精品国产伦一区二区三区免费| 欧美中文字幕亚洲一区二区va在线| 精东粉嫩av免费一区二区三区| 亚洲一区二区中文在线| 亚洲国产高清aⅴ视频| 日韩欧美一区二区在线视频| 91网站最新网址| 国产精品18久久久久| 丝袜脚交一区二区| 亚洲狼人国产精品| 亚洲国产精品高清| 久久午夜羞羞影院免费观看| 宅男在线国产精品| 欧美日韩色一区| 色国产精品一区在线观看| 国产成人在线影院| 国产一区欧美一区| 久久99国产精品久久| 视频精品一区二区| 午夜亚洲国产au精品一区二区| 亚洲色图第一区| 国产精品国产三级国产普通话蜜臀| 精品国产污网站| 日韩午夜激情视频| 日韩三级在线观看| 欧美一区在线视频| 欧美美女一区二区在线观看| 欧美色手机在线观看| 欧美午夜寂寞影院| 欧洲精品一区二区三区在线观看| 91在线观看美女| 99精品国产一区二区三区不卡| av毛片久久久久**hd| 成人夜色视频网站在线观看| 高清不卡在线观看| www.日本不卡| 99久久99久久免费精品蜜臀| 97久久久精品综合88久久| 91亚洲精品一区二区乱码| 91在线观看一区二区| 在线观看国产日韩| 欧美日韩五月天| 日韩精品中文字幕在线不卡尤物| 日韩一区二区三区电影在线观看| 欧美刺激脚交jootjob| 精品国产精品网麻豆系列| 精品福利视频一区二区三区| 久久色.com| 亚洲欧洲另类国产综合| 亚洲最快最全在线视频| 免费亚洲电影在线| 国产99久久久久久免费看农村| 成人毛片老司机大片| 色综合久久精品| 欧美人xxxx| 亚洲精品一区二区三区99| 中文字幕国产一区二区| 亚洲精品你懂的| 日韩精品一卡二卡三卡四卡无卡| 久久成人综合网| 91在线免费视频观看| 欧美日韩免费一区二区三区视频| 日韩美女天天操| 中文字幕亚洲综合久久菠萝蜜| 亚洲午夜免费电影| 激情小说亚洲一区| 99久久久久免费精品国产 | 一本色道久久综合亚洲aⅴ蜜桃 | 久久99国产精品久久99果冻传媒| 成人爱爱电影网址| 欧美高清dvd| 国产精品成人免费| 蜜臂av日日欢夜夜爽一区| 99久久伊人久久99| 91精品国产一区二区三区蜜臀 | www.一区二区| 欧美一区2区视频在线观看| 国产精品久久毛片a| 美女www一区二区| 一本到一区二区三区| 欧美精品一区二区三区高清aⅴ | 国产久卡久卡久卡久卡视频精品| 色综合网站在线| 精品国产电影一区二区| 亚洲乱码日产精品bd| 国产黄色成人av| 日韩欧美国产午夜精品| 亚洲欧美激情在线| 国产精品亚洲第一区在线暖暖韩国| 欧美丝袜丝nylons| 国产精品久久久一本精品| 久久国产精品第一页| 欧美日韩激情一区| 中文一区二区完整视频在线观看| 奇米影视一区二区三区| 91蜜桃免费观看视频| 欧美国产成人在线| 国产精品影音先锋| 日韩欧美成人激情| 舔着乳尖日韩一区| 91精品福利视频| 亚洲精品乱码久久久久| 国产成人激情av| 久久免费午夜影院| 久久疯狂做爰流白浆xx| 91精品国产色综合久久不卡蜜臀| 一区二区在线看| 不卡电影免费在线播放一区| 国产日韩精品一区二区三区| 国产一本一道久久香蕉| 日韩欧美在线123| 亚洲图片欧美综合| 日本丶国产丶欧美色综合| 亚洲欧美偷拍三级| 99久久免费视频.com| 国产精品久久久久久久久晋中 | 精品国产一区二区亚洲人成毛片| 日韩电影免费在线| 日韩视频在线你懂得| 免费高清视频精品| 日韩精品在线一区| 精品一区二区三区免费观看|