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

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

?? xmenu.js

?? J-Blog v1.0 系統(tǒng)配置: web.xml里默認(rèn)配置為:resin 2.1.14 可根據(jù)您的具體服務(wù)器配置。 注意鏈接池就是了! 然后導(dǎo)入database/j-blog.sql 默
?? JS
字號:

var ua = navigator.userAgent;
var opera = /opera [56789]|opera\/[56789]/i.test(ua);
var ie = !opera && /MSIE/.test(ua);
var ie50 = ie && /MSIE 5\.[01234]/.test(ua);
var ie6 = ie && /MSIE [6789]/.test(ua);
var ieBox = ie && (document.compatMode == null || document.compatMode != "CSS1Compat");
var moz = !opera && /gecko/i.test(ua);
var nn6 = !opera && /netscape.*6\./i.test(ua);

webfxMenuDefaultWidth			= 100;

webfxMenuDefaultBorderLeft		= 1;
webfxMenuDefaultBorderRight		= 1;
webfxMenuDefaultBorderTop		= 1;
webfxMenuDefaultBorderBottom	= 1;
webfxMenuDefaultPaddingLeft		= 1;
webfxMenuDefaultPaddingRight	= 1;
webfxMenuDefaultPaddingTop		= 1;
webfxMenuDefaultPaddingBottom	= 1;

webfxMenuDefaultShadowLeft		= 0;
webfxMenuDefaultShadowRight		= ie && !ie50 && /win32/i.test(navigator.platform) ? 4 :0;
webfxMenuDefaultShadowTop		= 0;
webfxMenuDefaultShadowBottom	= ie && !ie50 && /win32/i.test(navigator.platform) ? 4 : 0;

webfxMenuItemDefaultHeight		= 18;
webfxMenuItemDefaultText		= "Untitled";
webfxMenuItemDefaultHref		= "javascript:void(0)";

webfxMenuSeparatorDefaultHeight	= 6;

webfxMenuDefaultEmptyText		= "Empty";

webfxMenuDefaultUseAutoPosition	= nn6 ? false : true;

webfxMenuImagePath				= root.path;

webfxMenuUseHover				= opera ? true : false;
webfxMenuHideTime				= 500;
webfxMenuShowTime				= 200;

var webFXMenuHandler = {
	idCounter		:	0,
	idPrefix		:	"webfx-menu-object-",
	getId			:	function () { return this.idPrefix + this.idCounter++; },
	overMenuItem	:	function (oItem) {
		var jsItem = this.all[oItem.id];
		if (jsItem.subMenu) {
			jsItem.parentMenu.hideAllSubs();
			jsItem.subMenu.show();
		}
		else
			jsItem.parentMenu.hideAllSubs();
	},
	blurMenu		:	function (oMenuItem) {
		window.setTimeout("webFXMenuHandler.all[\"" + oMenuItem.id + "\"].subMenu.hide();", 200);
	},
	all				:	{}
};


function WebFXMenu() {
	this._menuItems	= [];
	this._subMenus	= [];
	this.id			= webFXMenuHandler.getId();
	this.top		= 0;
	this.left		= 0;
	this.shown		= false;
	this.parentMenu	= null;
	webFXMenuHandler.all[this.id] = this;
}

function hideAll(){
  var menuLayers = document.all.tags("DIV");
  for (i=0; i<menuLayers.length; i++) {
    if (menuLayers[i].id.indexOf("webfx-menu") != -1) {
      hideObject(menuLayers[i].id);
    }
  }	

}
function hideAllEX(){
	if(window.event.srcElement.className!="webfxmenuroot"){
	  var menuLayers = document.all.tags("DIV");
	  for (i=0; i<menuLayers.length; i++) {
	    if (menuLayers[i].id.indexOf("webfx-menu") != -1) {
	      hideObject(menuLayers[i].id);
	    }
	  }	
  }
}
function hideObject(obj) {
  document.all[obj].style.visibility = "hidden"; 
}

WebFXMenu.prototype.width			= webfxMenuDefaultWidth;
WebFXMenu.prototype.emptyText		= webfxMenuDefaultEmptyText;
WebFXMenu.prototype.useAutoPosition	= webfxMenuDefaultUseAutoPosition;

WebFXMenu.prototype.borderLeft		= webfxMenuDefaultBorderLeft;
WebFXMenu.prototype.borderRight		= webfxMenuDefaultBorderRight;
WebFXMenu.prototype.borderTop		= webfxMenuDefaultBorderTop;
WebFXMenu.prototype.borderBottom	= webfxMenuDefaultBorderBottom;

WebFXMenu.prototype.paddingLeft		= webfxMenuDefaultPaddingLeft;
WebFXMenu.prototype.paddingRight	= webfxMenuDefaultPaddingRight;
WebFXMenu.prototype.paddingTop		= webfxMenuDefaultPaddingTop;
WebFXMenu.prototype.paddingBottom	= webfxMenuDefaultPaddingBottom;

WebFXMenu.prototype.shadowLeft		= webfxMenuDefaultShadowLeft;
WebFXMenu.prototype.shadowRight		= webfxMenuDefaultShadowRight;
WebFXMenu.prototype.shadowTop		= webfxMenuDefaultShadowTop;
WebFXMenu.prototype.shadowBottom	= webfxMenuDefaultShadowBottom;

WebFXMenu.prototype.add = function (menuItem) {
	this._menuItems[this._menuItems.length] = menuItem;
	if (menuItem.subMenu) {
		this._subMenus[this._subMenus.length] = menuItem.subMenu;
		menuItem.subMenu.parentMenu = this;
	}

	menuItem.parentMenu = this;
};

WebFXMenu.prototype.show = function (relObj, sDir) {
	if (this.useAutoPosition)
		this.position(relObj, sDir);

	var divElement = document.getElementById(this.id);
	divElement.style.left = opera ? this.left : this.left + "px";
	divElement.style.top = opera ? this.top : this.top + "px";
	divElement.style.visibility = "visible";
	this.shown = true;
	if (this.parentMenu)
	{
		this.parentMenu.show();
	}
};

WebFXMenu.prototype.hide = function () {
	this.hideAllSubs();
	var divElement = document.getElementById(this.id);
	divElement.style.visibility = "hidden";
	this.shown = false;
};

WebFXMenu.prototype.hideAllSubs = function () {
	for (var i = 0; i < this._subMenus.length; i++) {
		if (this._subMenus[i].shown)
			this._subMenus[i].hide();
	}
};
WebFXMenu.prototype.toString = function () {
	var top = this.top + this.borderTop + this.paddingTop;
	var str = "<div id='" + this.id + "' class='webfx-menu' style='" +
	"width:" + (!ieBox  ?
		this.width - this.borderLeft - this.paddingLeft - this.borderRight - this.paddingRight  :
		this.width) + "px;" +
	(this.useAutoPosition ?
		"left:" + this.left + "px;" + "top:" + this.top + "px;" :
		"") +
	(ie50 ? "filter: none;" : "") +
	"'>";

	if (this._menuItems.length == 0) {
		str +=	"<span class='webfx-menu-empty'>" + this.emptyText + "</span>";
	}
	else {
		for (var i = 0; i < this._menuItems.length; i++) {
			var mi = this._menuItems[i];
			str += mi;
			if (!this.useAutoPosition) {
				if (mi.subMenu && !mi.subMenu.useAutoPosition)
					mi.subMenu.top = top - mi.subMenu.borderTop - mi.subMenu.paddingTop;
				top += mi.height;
			}
		}

	}

	str += "</div>";

	for (var i = 0; i < this._subMenus.length; i++) {
		this._subMenus[i].left = this.left + this.width - this._subMenus[i].borderLeft;
		str += this._subMenus[i];
	}

	return str;
};

function WebFXMenuItem(sText, sHref, sToolTip, oSubMenu) {
	this.text = sText || webfxMenuItemDefaultText;
	this.href = (sHref == null || sHref == "") ? webfxMenuItemDefaultHref : sHref;
	this.subMenu = oSubMenu;
	if (oSubMenu)
		oSubMenu.parentMenuItem = this;
	this.toolTip = sToolTip;
	this.id = webFXMenuHandler.getId();
	webFXMenuHandler.all[this.id] = this;
};
WebFXMenuItem.prototype.height = webfxMenuItemDefaultHeight;
WebFXMenuItem.prototype.toString = function () {
	return	"<a" +
			" id='" + this.id + "'" +
			" href='" + this.href + "'" +
			(this.toolTip ? " title='" + this.toolTip + "'" : "") +
			" onmouseover='webFXMenuHandler.overMenuItem(this)'" +
			">" +
			(this.subMenu ? "<img class='arrow' src='" + webfxMenuImagePath + "images/arrow.right.gif'>" : "") +
			this.text + 
			"</a>";
};

function WebFXMenuSeparator() {
	this.id = webFXMenuHandler.getId();
	webFXMenuHandler.all[this.id] = this;
};
WebFXMenuSeparator.prototype.height = webfxMenuSeparatorDefaultHeight;
WebFXMenuSeparator.prototype.toString = function () {
	return "<div></div>"
};

function WebFXMenuBar() {
	this._parentConstructor = WebFXMenu;
	this._parentConstructor();
}
WebFXMenuBar.prototype = new WebFXMenu;
WebFXMenuBar.prototype.toString = function () {
	var str = "<div id='" + this.id + "' class='webfx-menu-bar'>";

	for (var i = 0; i < this._menuItems.length; i++)
		str += this._menuItems[i];
	
	str += "</div>";

	for (var i = 0; i < this._subMenus.length; i++)
		str += this._subMenus[i];
	
	return str;
};

function WebFXMenuButton(sText, sHref, sToolTip, oSubMenu) {
	this._parentConstructor = WebFXMenuItem;
	this._parentConstructor(sText, sHref, sToolTip, oSubMenu);
}
WebFXMenuButton.prototype = new WebFXMenuItem;
WebFXMenuButton.prototype.toString = function () {
	return	"<a" +
			" id='" + this.id + "'" +
			" href='" + this.href + "'" +
			(this.toolTip ? " title='" + this.toolTip + "'" : "") +
			(opera ? (
				" onoperafocus='webFXMenuHandler.overMenuItem(this)'" +
				(this.subMenu ? " onoperablur='webFXMenuHandler.blurMenu(this)'" : "")
			) : (
				" onfocus='webFXMenuHandler.overMenuItem(this)'" +
				(this.subMenu ? " onblur='webFXMenuHandler.blurMenu(this)'" : "")
			)) +
			">" +
			this.text + 
			(this.subMenu ? " <img class='arrow' src='" + webfxMenuDefaultImagePath + "arrow.down.gif' align='absmiddle'>" : "") +				
			"</a>";
};

function getInnerLeft(el) {
	if (el == null) return 0;
	if (ieBox && el == document.body || !ieBox && el == document.documentElement) return 0;
	return getLeft(el) + getBorderLeft(el);
}

function getLeft(el) {
	if (el == null) return 0;
	return el.offsetLeft + getInnerLeft(el.offsetParent);
}

function getInnerTop(el) {
	if (el == null) return 0;
	if (ieBox && el == document.body || !ieBox && el == document.documentElement) return 0;
	return getTop(el) + getBorderTop(el);
}

function getTop(el) {
	if (el == null) return 0;
	return el.offsetTop + getInnerTop(el.offsetParent);
}

function getBorderLeft(el) {
	return ie ?
		el.clientLeft :
		parseInt(window.getComputedStyle(el, null).getPropertyValue("border-left-width"));
}

function getBorderTop(el) {
	return ie ?
		el.clientTop :
		parseInt(window.getComputedStyle(el, null).getPropertyValue("border-top-width"));
}

function opera_getLeft(el) {
	if (el == null) return 0;
	return el.offsetLeft + opera_getLeft(el.offsetParent);
}

function opera_getTop(el) {
	if (el == null) return 0;
	return el.offsetTop + opera_getTop(el.offsetParent);
}

function getOuterRect(el) {
	return {
		left:	(opera ? opera_getLeft(el) : getLeft(el)),
		top:	(opera ? opera_getTop(el) : getTop(el)),
		width:	el.offsetWidth,
		height:	el.offsetHeight
	};
}

function getDocumentRect(el) {
	return {
		left:	0,
		top:	0,
		width:	(ie ?
					(ieBox ? document.body.clientWidth : document.documentElement.clientWidth) :
					window.innerWidth
				),
		height:	(ie ?
					(ieBox ? document.body.clientHeight : document.documentElement.clientHeight) :
					window.innerHeight
				)
	};
}

function getScrollPos(el) {
	return {
		left:	(ie ?
					(ieBox ? document.body.scrollLeft : document.documentElement.scrollLeft) :
					window.pageXOffset
				),
		top:	(ie ?
					(ieBox ? document.body.scrollTop : document.documentElement.scrollTop) :
					window.pageYOffset
				)
	};
}

WebFXMenu.prototype.position = function (relEl, sDir) {
	var dir = sDir;

	var piRect;
	if (!relEl) {
		var pi = this.parentMenuItem;
		if (!this.parentMenuItem)
			return;

		relEl = document.getElementById(pi.id);
		if (dir == null)
			dir = pi instanceof WebFXMenuButton ? "vertical" : "horizontal";

		piRect = getOuterRect(relEl);
	}
	else if (relEl.left != null && relEl.top != null && relEl.width != null && relEl.height != null) {	// got a rect
		piRect = relEl;
	}
	else
		piRect = getOuterRect(relEl);

	var menuEl = document.getElementById(this.id);
	var menuRect = getOuterRect(menuEl);
	var docRect = getDocumentRect();
	var scrollPos = getScrollPos();
	var pMenu = this.parentMenu;

	if (dir == "vertical") {
		if (piRect.left + menuRect.width - scrollPos.left <= docRect.width)
			this.left = piRect.left;
		else if (docRect.width >= menuRect.width)
			this.left = docRect.width + scrollPos.left - menuRect.width;
		else
			this.left = scrollPos.left;

		if (piRect.top + piRect.height + menuRect.height <= docRect.height + scrollPos.top)
			this.top = piRect.top + piRect.height;
		else if (piRect.top - menuRect.height >= scrollPos.top)
			this.top = piRect.top - menuRect.height;
		else if (docRect.height >= menuRect.height)
			this.top = docRect.height + scrollPos.top - menuRect.height;
		else
			this.top = scrollPos.top;
	}
	else {
		if (piRect.top + menuRect.height - this.borderTop - this.paddingTop <= docRect.height + scrollPos.top)
			this.top = piRect.top - this.borderTop - this.paddingTop;
		else if (piRect.top + piRect.height - menuRect.height + this.borderTop + this.paddingTop >= 0)
			this.top = piRect.top + piRect.height - menuRect.height + this.borderBottom + this.paddingBottom + this.shadowBottom;
		else if (docRect.height >= menuRect.height)
			this.top = docRect.height + scrollPos.top - menuRect.height;
		else
			this.top = scrollPos.top;

		var pMenuPaddingLeft = pMenu ? pMenu.paddingLeft : 0;
		var pMenuBorderLeft = pMenu ? pMenu.borderLeft : 0;
		var pMenuPaddingRight = pMenu ? pMenu.paddingRight : 0;
		var pMenuBorderRight = pMenu ? pMenu.borderRight : 0;

		if (piRect.left + piRect.width + menuRect.width + pMenuPaddingRight +
			pMenuBorderRight - this.borderLeft + this.shadowRight <= docRect.width + scrollPos.left)
			this.left = piRect.left + piRect.width + pMenuPaddingRight + pMenuBorderRight - this.borderLeft;
		else if (piRect.left - menuRect.width - pMenuPaddingLeft - pMenuBorderLeft + this.borderRight + this.shadowRight >= 0)
			this.left = piRect.left - menuRect.width - pMenuPaddingLeft - pMenuBorderLeft + this.borderRight + this.shadowRight;
		else if (docRect.width >= menuRect.width)
			this.left = docRect.width  + scrollPos.left - menuRect.width;
		else
			this.left = scrollPos.left;
	}
};

if (opera) {
	document.onmousedown = function(e) {
		var a = e.target;
		while (a != null && a.tagName != "A") a = a.parentNode;

		if (document._oldFocus && document._oldFocus != a) {
			if (typeof document._oldFocus.onoperablur == "string") {
				var f = new Function ("event", document._oldFocus.onoperablur);
				document._oldFocus.onFakeBlur = f;
			}
			if (typeof document._oldFocus.onFakeBlur == "function") 
				document._oldFocus.onFakeBlur(e);
		}

		if (a && a != document._oldFocus) {
			document._oldFocus = a;
			if (typeof a.onoperafocus == "string") {
				var f = new Function ("event", a.onoperafocus);
				a.onFakeFocus = f;
			}
			if (typeof a.onFakeFocus == "function") 
				a.onFakeFocus(e);
		}
		else
			document._oldFocus = null;
	};
}
document.onclick=hideAllEX;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一区二区av在线| 7777精品伊人久久久大香线蕉经典版下载 | 欧美精品丝袜久久久中文字幕| 亚洲激情图片小说视频| 欧美怡红院视频| 三级影片在线观看欧美日韩一区二区| 欧美日韩午夜在线视频| 久久av中文字幕片| 欧美国产精品v| 91免费版pro下载短视频| 亚洲国产日日夜夜| 精品美女一区二区| 成人免费不卡视频| 亚洲国产精品欧美一二99| 欧美一区午夜视频在线观看| 国产成人在线视频网站| 一区二区三区四区不卡在线 | 亚洲精品久久7777| 欧美精品 国产精品| 麻豆精品在线播放| 亚洲视频在线观看一区| 欧美日韩免费观看一区二区三区| 欧美a级一区二区| 国产精品女人毛片| 欧美一区二区三区在线观看| 国产成人精品免费网站| 亚洲1区2区3区4区| 欧美极品另类videosde| 欧美日韩1区2区| 成人在线一区二区三区| 亚洲第一成人在线| 国产欧美日韩综合| 91精品国产91久久综合桃花| 97久久超碰国产精品电影| 久久精品国产亚洲aⅴ| 亚洲精品综合在线| 国产日韩欧美在线一区| 91麻豆精品国产91久久久| 成人av动漫网站| 狠狠色狠狠色合久久伊人| 亚洲国产视频在线| 国产精品成人免费精品自在线观看| 91精品国产品国语在线不卡| 色婷婷综合久久久中文字幕| 国产成人日日夜夜| 青青草成人在线观看| 一区二区三区在线免费观看| 国产女同互慰高潮91漫画| 日韩午夜电影av| 欧美日韩国产一区| 色婷婷综合久色| 91在线视频免费观看| 国产精品一线二线三线| 免费在线观看一区| 亚洲二区在线观看| 一区二区三区中文字幕精品精品 | 99久久精品免费看国产| 国产中文字幕精品| 麻豆精品视频在线观看| 日韩av电影免费观看高清完整版 | 亚洲动漫第一页| 亚洲丝袜美腿综合| 国产精品传媒在线| 国产精品嫩草99a| 久久五月婷婷丁香社区| 欧美一级理论性理论a| 欧美美女喷水视频| 欧美日韩国产一二三| 欧美伊人精品成人久久综合97 | 欧美狂野另类xxxxoooo| 色菇凉天天综合网| 日本韩国欧美在线| 欧美综合色免费| 色爱区综合激月婷婷| 在线观看国产日韩| 欧美色图免费看| 欧美狂野另类xxxxoooo| 91麻豆精品国产91久久久| 日韩丝袜美女视频| 亚洲精品一线二线三线无人区| 精品欧美一区二区久久| 久久久精品中文字幕麻豆发布| 久久久久久久久久久电影| 国产亚洲综合av| 国产午夜精品在线观看| 最新日韩av在线| 亚洲精品美腿丝袜| 亚洲18色成人| 卡一卡二国产精品| 国产suv精品一区二区三区| 成人午夜激情在线| 欧美亚洲国产怡红院影院| 欧美视频日韩视频在线观看| 欧美丰满美乳xxx高潮www| 欧美成人乱码一区二区三区| 久久精品视频免费观看| 中文字幕在线一区二区三区| 亚洲精品免费播放| 美女视频一区在线观看| 国产盗摄一区二区| 色屁屁一区二区| 欧美成人性战久久| 日韩美女久久久| 男男成人高潮片免费网站| 国产精品996| 在线日韩一区二区| 精品乱码亚洲一区二区不卡| 国产精品大尺度| 婷婷一区二区三区| 国产成人av自拍| 欧美色视频在线| 国产精品亲子伦对白| 香蕉加勒比综合久久| 国产伦理精品不卡| 欧美午夜理伦三级在线观看| 精品国产免费一区二区三区四区| 国产精品欧美经典| 久久精品国产77777蜜臀| 成人av电影在线网| 精品少妇一区二区三区免费观看 | 中文字幕欧美日韩一区| 亚洲一区二区三区视频在线| 黑人巨大精品欧美一区| 色哦色哦哦色天天综合| 久久综合久久99| 日韩精品福利网| 色综合视频一区二区三区高清| 精品国产网站在线观看| 香蕉影视欧美成人| 91小宝寻花一区二区三区| 久久综合久久综合九色| 午夜国产不卡在线观看视频| 99热精品国产| 亚洲精品在线免费播放| 日韩精品福利网| 欧美综合天天夜夜久久| 自拍偷拍国产精品| 国产成人鲁色资源国产91色综| 日韩欧美一级在线播放| 亚洲大片精品永久免费| 91偷拍与自偷拍精品| 欧美国产精品中文字幕| 国产美女视频91| 日韩三级精品电影久久久| 亚洲国产va精品久久久不卡综合| www.亚洲激情.com| 国产日韩一级二级三级| 国产美女av一区二区三区| 欧美一级片在线看| 奇米四色…亚洲| 欧美一区二区女人| 日韩精品1区2区3区| 欧美午夜不卡在线观看免费| 亚洲人精品午夜| 波多野结衣中文一区| 国产日韩精品一区二区三区在线| 久久成人综合网| 日韩欧美国产一区二区在线播放| 亚洲va欧美va人人爽| 欧美日韩免费高清一区色橹橹| 亚洲一区二区三区四区五区黄| 色噜噜久久综合| 亚洲一区二区美女| 欧美日韩综合在线免费观看| 亚洲高清免费观看| 69堂国产成人免费视频| 日韩精品亚洲专区| 欧美成人在线直播| 国产高清亚洲一区| 亚洲国产激情av| 北条麻妃一区二区三区| 国产亲近乱来精品视频| 成人晚上爱看视频| 亚洲图片欧美激情| 91福利国产成人精品照片| 亚洲在线视频一区| 欧美电影一区二区三区| 久久精品国产**网站演员| 久久欧美中文字幕| 91在线看国产| 亚洲蜜臀av乱码久久精品| 欧美伊人久久久久久久久影院| 亚洲va中文字幕| 精品国产乱码91久久久久久网站| 国产一区二区不卡在线| 亚洲欧洲精品一区二区三区| 色哦色哦哦色天天综合| 亚洲国产美女搞黄色| 日韩欧美高清一区| 国产成人av电影| 一区二区在线观看av| 欧美男男青年gay1069videost| 美女一区二区在线观看| 国产精品少妇自拍| 欧美伊人久久久久久久久影院| 日本女优在线视频一区二区| 久久久久久夜精品精品免费| 成a人片国产精品| 午夜成人免费视频| 国产精品天干天干在线综合|