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

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

?? button.js

?? 圖書管理系統包括圖書的增加、刪除、修改等功能
?? JS
字號:
/*	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.widget.Button");dojo.provide("dojo.widget.html.Button");dojo.require("dojo.lang.extras");dojo.require("dojo.html");dojo.require("dojo.style");dojo.require("dojo.widget.*");dojo.require("dojo.widget.HtmlWidget");dojo.widget.defineWidget(	"dojo.widget.html.Button",	dojo.widget.HtmlWidget,	{		widgetType: "Button",		isContainer: true,			// Constructor arguments		caption: "",		disabled: false,			templatePath: dojo.uri.dojoUri("src/widget/templates/HtmlButtonTemplate.html"),		templateCssPath: dojo.uri.dojoUri("src/widget/templates/HtmlButtonTemplate.css"),				// button images		inactiveImg: "src/widget/templates/images/soriaButton-",		activeImg: "src/widget/templates/images/soriaActive-",		pressedImg: "src/widget/templates/images/soriaPressed-",		disabledImg: "src/widget/templates/images/soriaDisabled-",		width2height: 1.0/3.0,			// attach points		containerNode: null,		leftImage: null,		centerImage: null,		rightImage: null,			fillInTemplate: function(args, frag){			if(this.caption != ""){				this.containerNode.appendChild(document.createTextNode(this.caption));			}			dojo.html.disableSelection(this.containerNode);		},		postCreate: function(args, frag){			this.sizeMyself();		},			sizeMyself: function(){			// we cannot size correctly if any of our ancestors are hidden (display:none),			// so temporarily attach to document.body			if(this.domNode.parentNode){				var placeHolder = document.createElement("span");				dojo.dom.insertBefore(placeHolder, this.domNode);			}			dojo.html.body().appendChild(this.domNode);						this.sizeMyselfHelper();						// Put this.domNode back where it was originally			if(placeHolder){				dojo.dom.insertBefore(this.domNode, placeHolder);				dojo.dom.removeNode(placeHolder);			}		},		sizeMyselfHelper: function(){			this.height = dojo.style.getOuterHeight(this.containerNode);			this.containerWidth = dojo.style.getOuterWidth(this.containerNode);			var endWidth= this.height * this.width2height;				this.containerNode.style.left=endWidth+"px";				this.leftImage.height = this.rightImage.height = this.centerImage.height = this.height;			this.leftImage.width = this.rightImage.width = endWidth+1;			this.centerImage.width = this.containerWidth;			this.centerImage.style.left=endWidth+"px";			this._setImage(this.disabled ? this.disabledImg : this.inactiveImg);			if ( this.disabled ) {				dojo.html.prependClass(this.domNode, "dojoButtonDisabled");			} else {				dojo.html.removeClass(this.domNode, "dojoButtonDisabled");			}							this.domNode.style.height=this.height + "px";			this.domNode.style.width= (this.containerWidth+2*endWidth) + "px";		},			onMouseOver: function(e){			if( this.disabled ){ return; }			dojo.html.prependClass(this.domNode, "dojoButtonHover");			this._setImage(this.activeImg);		},			onMouseDown: function(e){			if( this.disabled ){ return; }			dojo.html.prependClass(this.domNode, "dojoButtonDepressed");			dojo.html.removeClass(this.domNode, "dojoButtonHover");			this._setImage(this.pressedImg);		},		onMouseUp: function(e){			if( this.disabled ){ return; }			dojo.html.prependClass(this.domNode, "dojoButtonHover");			dojo.html.removeClass(this.domNode, "dojoButtonDepressed");			this._setImage(this.activeImg);		},			onMouseOut: function(e){			if( this.disabled ){ return; }			dojo.html.removeClass(this.domNode, "dojoButtonHover");			this._setImage(this.inactiveImg);		},			buttonClick: function(e){			if( !this.disabled ) { this.onClick(e); }		},		onClick: function(e) { },		_setImage: function(prefix){			this.leftImage.src=dojo.uri.dojoUri(prefix + "l.gif");			this.centerImage.src=dojo.uri.dojoUri(prefix + "c.gif");			this.rightImage.src=dojo.uri.dojoUri(prefix + "r.gif");		},				_toggleMenu: function(menuId){			var menu = dojo.widget.getWidgetById(menuId);			if ( !menu ) { return; }				if ( menu.open && !menu.isShowingNow) {				var pos = dojo.style.getAbsolutePosition(this.domNode, false);				menu.open(pos.x, pos.y+this.height, this);			} else if ( menu.close && menu.isShowingNow ){				menu.close();			} else {				menu.toggle();			}		},				setCaption: function(content){			this.caption=content;			this.containerNode.innerHTML=content;			this.sizeMyself();		},				setDisabled: function(disabled){			this.disabled=disabled;			this.sizeMyself();		}	});/**** DropDownButton - push the button and a menu shows up *****/dojo.widget.defineWidget(	"dojo.widget.html.DropDownButton",	dojo.widget.html.Button,	{		widgetType: "DropDownButton",			menuId: "",		arrow: null,			downArrow: "src/widget/templates/images/whiteDownArrow.gif",		disabledDownArrow: "src/widget/templates/images/whiteDownArrow.gif",			fillInTemplate: function(args, frag){			dojo.widget.html.DropDownButton.superclass.fillInTemplate.call(this, args, frag);				this.arrow = document.createElement("img");			dojo.html.setClass(this.arrow, "downArrow");		},		sizeMyselfHelper: function(){			// draw the arrow (todo: why is the arror in containerNode rather than outside it?)			this.arrow.src = dojo.uri.dojoUri(this.disabled ? this.disabledDownArrow : this.downArrow);			this.containerNode.appendChild(this.arrow);			dojo.widget.html.DropDownButton.superclass.sizeMyselfHelper.call(this);		},		onClick: function (e){			this._toggleMenu(this.menuId);		}	});/**** ComboButton - left side is normal button, right side shows menu *****/dojo.widget.defineWidget(	"dojo.widget.html.ComboButton",	dojo.widget.html.Button,	{		widgetType: "ComboButton",			menuId: "",			templatePath: dojo.uri.dojoUri("src/widget/templates/HtmlComboButtonTemplate.html"),			// attach points		leftPart: null,		rightPart: null,		arrowBackgroundImage: null,			// constants		splitWidth: 2,		// pixels between left&right part of button		arrowWidth: 5,		// width of segment holding down arrow			sizeMyselfHelper: function(e){			this.height = dojo.style.getOuterHeight(this.containerNode);			this.containerWidth = dojo.style.getOuterWidth(this.containerNode);			var endWidth= this.height/3;				// left part			this.leftImage.height = this.rightImage.height = this.centerImage.height = 				this.arrowBackgroundImage.height = this.height;			this.leftImage.width = endWidth+1;			this.centerImage.width = this.containerWidth;			this.leftPart.style.height = this.height + "px";			this.leftPart.style.width = endWidth + this.containerWidth + "px";			this._setImageL(this.disabled ? this.disabledImg : this.inactiveImg);				// right part			this.arrowBackgroundImage.width=this.arrowWidth;			this.rightImage.width = endWidth+1;			this.rightPart.style.height = this.height + "px";			this.rightPart.style.width = this.arrowWidth + endWidth + "px";			this._setImageR(this.disabled ? this.disabledImg : this.inactiveImg);				// outer container			this.domNode.style.height=this.height + "px";			var totalWidth = this.containerWidth+this.splitWidth+this.arrowWidth+2*endWidth;			this.domNode.style.width= totalWidth + "px";		},			/** functions on left part of button**/		leftOver: function(e){			if( this.disabled ){ return; }			dojo.html.prependClass(this.leftPart, "dojoButtonHover");			this._setImageL(this.activeImg);		},			leftDown: function(e){			if( this.disabled ){ return; }			dojo.html.prependClass(this.leftPart, "dojoButtonDepressed");			dojo.html.removeClass(this.leftPart, "dojoButtonHover");			this._setImageL(this.pressedImg);		},		leftUp: function(e){			if( this.disabled ){ return; }			dojo.html.prependClass(this.leftPart, "dojoButtonHover");			dojo.html.removeClass(this.leftPart, "dojoButtonDepressed");			this._setImageL(this.activeImg);		},			leftOut: function(e){			if( this.disabled ){ return; }			dojo.html.removeClass(this.leftPart, "dojoButtonHover");			this._setImageL(this.inactiveImg);		},			leftClick: function(e){			if ( !this.disabled ) {				this.onClick(e);			}		},			_setImageL: function(prefix){			this.leftImage.src=dojo.uri.dojoUri(prefix + "l.gif");			this.centerImage.src=dojo.uri.dojoUri(prefix + "c.gif");		},			/*** functions on right part of button ***/		rightOver: function(e){			if( this.disabled ){ return; }			dojo.html.prependClass(this.rightPart, "dojoButtonHover");			this._setImageR(this.activeImg);		},			rightDown: function(e){			if( this.disabled ){ return; }			dojo.html.prependClass(this.rightPart, "dojoButtonDepressed");			dojo.html.removeClass(this.rightPart, "dojoButtonHover");			this._setImageR(this.pressedImg);		},		rightUp: function(e){			if( this.disabled ){ return; }			dojo.html.prependClass(this.rightPart, "dojoButtonHover");			dojo.html.removeClass(this.rightPart, "dojoButtonDepressed");			this._setImageR(this.activeImg);		},			rightOut: function(e){			if( this.disabled ){ return; }			dojo.html.removeClass(this.rightPart, "dojoButtonHover");			this._setImageR(this.inactiveImg);		},			rightClick: function(e){			if( this.disabled ){ return; }			this._toggleMenu(this.menuId);		},			_setImageR: function(prefix){			this.arrowBackgroundImage.src=dojo.uri.dojoUri(prefix + "c.gif");			this.rightImage.src=dojo.uri.dojoUri(prefix + "r.gif");		}	});

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色婷婷av一区二区三区软件| 欧日韩精品视频| av在线播放成人| 丝袜美腿高跟呻吟高潮一区| 国产精品网站在线| 国产亚洲精品中文字幕| 国产日韩av一区| 欧美色成人综合| 欧美日韩国产综合视频在线观看| 成人综合婷婷国产精品久久蜜臀| 国产不卡在线一区| 91首页免费视频| 在线影院国内精品| 欧美日韩dvd在线观看| 538prom精品视频线放| 欧美久久久久久久久中文字幕| 欧美日韩黄视频| 精品国产乱码久久久久久夜甘婷婷| 久久老女人爱爱| 亚洲视频一区在线观看| 亚洲第四色夜色| 国内精品国产成人国产三级粉色| 国产美女在线观看一区| 国产成人综合在线观看| 亚洲欧美另类图片小说| 亚洲精品中文在线影院| 亚洲图片欧美激情| 欧美激情综合在线| 自拍偷在线精品自拍偷无码专区| 136国产福利精品导航| 国产精品色哟哟| 亚洲啪啪综合av一区二区三区| 亚洲免费资源在线播放| 亚洲综合另类小说| 亚洲成人你懂的| 久久99精品国产麻豆婷婷洗澡| 国产在线精品一区在线观看麻豆| 国产一区不卡在线| 91日韩精品一区| 欧美日韩国产一级片| 精品国一区二区三区| 国产日产欧产精品推荐色 | 国产精品影视在线观看| 国产成人精品影视| 欧洲色大大久久| 正在播放亚洲一区| 日本一区二区三区视频视频| 亚洲婷婷在线视频| 天堂精品中文字幕在线| 国产一区二区三区蝌蚪| 91日韩一区二区三区| 91精品国产乱码| 中文字幕国产一区| 午夜欧美大尺度福利影院在线看| 激情深爱一区二区| 在线观看亚洲a| 久久久综合九色合综国产精品| 国产精品女人毛片| 美女精品一区二区| 色综合咪咪久久| 欧美刺激午夜性久久久久久久| 国产婷婷色一区二区三区在线| 亚洲欧洲综合另类| 久久精品免费观看| 欧美美女bb生活片| 国产喂奶挤奶一区二区三区| 日韩在线a电影| 国产精品一级二级三级| 欧美日韩国产系列| 欧美tk—视频vk| 婷婷久久综合九色综合绿巨人| 国产一区 二区| 欧美一级在线观看| 亚洲国产精品久久不卡毛片| 成人性生交大片| 久久日韩精品一区二区五区| 亚洲h精品动漫在线观看| 国产91精品一区二区| 日韩精品一区二区三区在线观看 | 成人丝袜高跟foot| 精品国产亚洲在线| 蜜臀国产一区二区三区在线播放| 色哟哟在线观看一区二区三区| 久久久久久久久久久黄色| 日韩成人精品在线观看| 欧美午夜片在线看| 亚洲精选一二三| 91亚洲大成网污www| 久久久久99精品国产片| 韩国v欧美v日本v亚洲v| 日韩一级片网站| 麻豆国产精品视频| 日韩美女在线视频| 麻豆91在线播放| 91精品国产aⅴ一区二区| 免费久久99精品国产| 欧美精品777| 毛片一区二区三区| 欧美tk—视频vk| 国产酒店精品激情| 国产视频视频一区| 成人av午夜电影| 亚洲欧美日韩国产手机在线| 91美女片黄在线观看91美女| 亚洲欧美国产77777| 91网站最新地址| 亚洲午夜影视影院在线观看| 欧美日韩极品在线观看一区| 视频精品一区二区| 久久久精品综合| 成人精品一区二区三区中文字幕| 综合久久久久综合| 91美女片黄在线观看| 亚洲成人激情综合网| 欧美大片一区二区三区| 国产成人亚洲精品狼色在线| 亚洲国产精华液网站w| 欧美综合在线视频| 麻豆精品一区二区av白丝在线| 久久久久99精品国产片| 色婷婷国产精品| 奇米色一区二区| 精品美女被调教视频大全网站| 成a人片亚洲日本久久| 五月开心婷婷久久| 国产日韩精品一区| 欧美人与禽zozo性伦| 国产一区二区毛片| 亚洲综合激情小说| 久久综合九色欧美综合狠狠| 91老师国产黑色丝袜在线| 日韩国产欧美在线视频| 欧美韩日一区二区三区四区| 欧美精品三级日韩久久| 成人精品在线视频观看| 日韩中文字幕亚洲一区二区va在线 | 亚洲成人自拍网| 久久亚洲一区二区三区四区| 91成人国产精品| 懂色av一区二区三区蜜臀| 视频一区二区不卡| 亚洲女子a中天字幕| 国产午夜亚洲精品理论片色戒 | 国产校园另类小说区| 精品视频在线视频| av色综合久久天堂av综合| 精品一区二区三区在线视频| 9191久久久久久久久久久| 91在线精品一区二区| 国内精品不卡在线| 青青草成人在线观看| 亚洲精品日产精品乱码不卡| 久久影院午夜片一区| 欧美巨大另类极品videosbest| 国产精品一区二区x88av| 美女网站在线免费欧美精品| 亚洲电影一级黄| 中文字幕亚洲一区二区va在线| 久久久不卡网国产精品一区| 欧美一级高清片在线观看| 欧美三级中文字| 欧洲一区二区av| 日本乱人伦aⅴ精品| 粉嫩在线一区二区三区视频| 狠狠色综合色综合网络| 卡一卡二国产精品| 免费高清不卡av| 午夜视频久久久久久| 首页欧美精品中文字幕| 亚洲成a人v欧美综合天堂| 亚洲资源中文字幕| 亚洲va欧美va天堂v国产综合| 一区二区三区在线免费播放 | 亚洲一区二区高清| 一区二区三区欧美| 亚洲综合av网| 日日嗨av一区二区三区四区| 香蕉久久一区二区不卡无毒影院 | 亚洲午夜一二三区视频| 亚洲最新视频在线播放| 亚洲国产综合色| 午夜久久久影院| 麻豆精品一二三| 国产精品18久久久久久久久 | 久久av中文字幕片| 国产精选一区二区三区| 国产成人夜色高潮福利影视| 成人免费视频一区| 欧美午夜寂寞影院| 日韩一级成人av| 欧美韩国日本一区| 亚洲在线视频一区| 日韩电影在线一区| 国产精品一区二区免费不卡| 国产sm精品调教视频网站| 久久成人久久鬼色| 色嗨嗨av一区二区三区| 欧美一二三区在线观看| 中文字幕av一区二区三区| 亚洲一区二区三区视频在线播放 |