⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.js

📁 Lotus Domino 开发的短讯系统
💻 JS
字号:
//***********默认设置定义.*********************
tPopWait=50;//停留tWait豪秒后显示提示。
tPopShow=5000;//显示tShow豪秒后关闭提示
showPopStep=20;
popOpacity=99;

//***************内部变量定义*****************
sPop=null;
curShow=null;
tFadeOut=null;
tFadeIn=null;
tFadeWaiting=null;

document.write("<style type='text/css'id='defaultPopStyle'>");
document.write(".cPopText {  background-color: #F8F8F5;color:#000000; border: 1px #000000 solid;font-color: font-size: 12px; padding-right: 4px; padding-left: 4px; height: 20px; padding-top: 2px; padding-bottom: 2px; filter: Alpha(Opacity=0)}");
document.write("</style>");
document.write("<div id='dypopLayer' style='position:absolute;z-index:1000;' class='cPopText'></div>");


function showPopupText(){
var o=event.srcElement;
	MouseX=event.x;
	MouseY=event.y;
	if(o.alt!=null && o.alt!=""){o.dypop=o.alt;o.alt=""};
        if(o.title!=null && o.title!=""){o.dypop=o.title;o.title=""};
	if(o.dypop!=sPop) 
	{
			sPop=o.dypop;
			clearTimeout(curShow);
			clearTimeout(tFadeOut);
			clearTimeout(tFadeIn);
			clearTimeout(tFadeWaiting);	
			if(sPop==null || sPop=="") 
			{
				dypopLayer.innerHTML="";
				dypopLayer.style.filter="Alpha()";
				dypopLayer.filters.Alpha.opacity=0;	
			}
			else 
			{
				if(o.dyclass!=null) popStyle=o.dyclass 
					else popStyle="cPopText";
				curShow=setTimeout("showIt()",tPopWait);
			}
			
	}
}

function showIt(){
		dypopLayer.className=popStyle;
		dypopLayer.innerHTML=sPop;
		popWidth=dypopLayer.clientWidth;
		popHeight=dypopLayer.clientHeight;
		if(MouseX+12+popWidth>document.body.clientWidth) popLeftAdjust=-popWidth-24
			else popLeftAdjust=0;
		if(MouseY+12+popHeight>document.body.clientHeight) popTopAdjust=-popHeight-24
			else popTopAdjust=0;
		dypopLayer.style.left=MouseX+12+document.body.scrollLeft+popLeftAdjust;
		dypopLayer.style.top=MouseY+12+document.body.scrollTop+popTopAdjust;
		dypopLayer.style.filter="Alpha(Opacity=0)";
		fadeOut();
}

function fadeOut(){
	if(dypopLayer.filters.Alpha.opacity<popOpacity) {
		dypopLayer.filters.Alpha.opacity+=showPopStep;
		tFadeOut=setTimeout("fadeOut()",1);
		}
		else {
			dypopLayer.filters.Alpha.opacity=popOpacity;
			tFadeWaiting=setTimeout("fadeIn()",tPopShow);
			}
}

function fadeIn(){
	if(dypopLayer.filters.Alpha.opacity>0) {
		dypopLayer.filters.Alpha.opacity-=1;
		tFadeIn=setTimeout("fadeIn()",1);
		}
}
//document.onmouseover=showPopupText;

function CheckAll(form)  {
  for (var i=0;i<form.elements.length;i++)    {
    var e = form.elements[i];
    if (e.name != 'chkall')       e.checked = form.chkall.checked; 
   }
  }

//下拉菜单相关代码
 var h;
 var w;
 var l;
 var t;
 var topMar = 1;
 var leftMar = -2;
 var space = 1;
 var isvisible;
 var MENU_SHADOW_COLOR='#ffffcc';//定义下拉菜单阴影色
 var global = window.document
 global.fo_currentMenu = null
 global.fo_shadows = new Array

function HideMenu() 
{
 var mX;
 var mY;
 var vDiv;
 var mDiv;
	if (isvisible == true)
{
		vDiv = document.all("menuDiv");
		mX = window.event.clientX + document.body.scrollLeft;
		mY = window.event.clientY + document.body.scrollTop;
		if ((mX < parseInt(vDiv.style.left)) || (mX > parseInt(vDiv.style.left)+vDiv.offsetWidth) || (mY < parseInt(vDiv.style.top)-h) || (mY > parseInt(vDiv.style.top)+vDiv.offsetHeight)){
			vDiv.style.visibility = "hidden";
			isvisible = false;
		}
}
}

function ShowMenu(vMnuCode,tWidth) {
	vSrc = window.event.srcElement;
	vMnuCode = "<table id='submenu' cellspacing=1 cellpadding=3 style='width:"+tWidth+"' class=tableborder1 onmouseout='HideMenu()'><tr height=23><td nowrap align=left class=tablebody1>" + vMnuCode + "</td></tr></table>";

	h = vSrc.offsetHeight;
	w = vSrc.offsetWidth;
	l = vSrc.offsetLeft + leftMar+4;
	t = vSrc.offsetTop + topMar + h + space-2;
	vParent = vSrc.offsetParent;
	while (vParent.tagName.toUpperCase() != "BODY")
	{
		l += vParent.offsetLeft;
		t += vParent.offsetTop;
		vParent = vParent.offsetParent;
	}

	menuDiv.innerHTML = vMnuCode;
	menuDiv.style.top = t;
	menuDiv.style.left = l;
	menuDiv.style.visibility = "visible";
	isvisible = true;
    	makeRectangularDropShadow(submenu, MENU_SHADOW_COLOR, 4)
}

function makeRectangularDropShadow(el, color, size)
{
	var i;
	for (i=size; i>0; i--)
	{
		var rect = document.createElement('div');
		var rs = rect.style
		rs.position = 'absolute';
		rs.left = (el.style.posLeft + i) + 'px';
		rs.top = (el.style.posTop + i) + 'px';
		rs.width = el.offsetWidth + 'px';
		rs.height = el.offsetHeight + 'px';
		rs.zIndex = el.style.zIndex - i;
		rs.backgroundColor = color;
		var opacity = 1 - i / (i + 1);
		rs.filter = 'alpha(opacity=' + (100 * opacity) + ')';
		el.insertAdjacentElement('afterEnd', rect);
		global.fo_shadows[global.fo_shadows.length] = rect;
	}
}
function bbimg(o){
	var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%';
	return false;
}
//用户控制面板
var manage= '<a style=font-size:9pt;line-height:14pt; href=\"JavaScript:openScript(\'../message/msgedit.aspx?action=new\',500,400)\">发短信</a><br><a style=font-size:9pt;line-height:14pt; href=\"dispuser.asp?id=4890&boardid=20&action=permission\">我能做什么</a><br><a style=font-size:9pt;line-height:14pt; href=\"topicwithme.asp?s=2\">我发表的主题</a><br><a style=font-size:9pt;line-height:14pt; href=\"topicwithme.asp?s=1\">我参与的主题</a><br><a style=font-size:9pt;line-height:14pt; href=\"mymodify.asp\">基本资料修改</a><br><a style=font-size:9pt;line-height:14pt; href=\"modifypsw.asp\">用户密码修改</a><br><a style=font-size:9pt;line-height:14pt; href=\"modifyadd.asp\">联系资料修改</a><br><a style=font-size:9pt;line-height:14pt; href=\"../message/usersms.aspx\">用户短信服务</a><br><a style=font-size:9pt;line-height:14pt; href=\"friendlist.asp\">编辑好友列表</a><br><a style=font-size:9pt;line-height:14pt; href=\"favlist.asp\">用户收藏管理</a>'

//铁血导航
var boardstat= '<a style=font-size:9pt;line-height:14pt; href=\"http://www.tiexue.net/\">铁血首页</a><br><a style=font-size:9pt;line-height:14pt; href=\"http://book.tiexue.net/\">铁血书库</a><br><a style=font-size:9pt;line-height:14pt; href=\"http://pic.tiexue.net\">铁血图鉴</a><br><a style=font-size:9pt;line-height:14pt; href=\"http://bbs.tiexue.net/\">铁血论坛</a><br><a style=font-size:9pt;line-height:14pt; href=\"http://blog.tiexue.net/\">铁血博客</a>'

//论坛收藏
var downlist= '<a style=font-size:9pt;line-height:14pt; href=\"show.asp?filetype=0&boardid=20\">文件集浏览</a><br><a style=font-size:9pt;line-height:14pt; href=\"show.asp?filetype=1&boardid=20\">图片集浏览</a><br><a style=font-size:9pt;line-height:14pt; href=\"show.asp?filetype=2&boardid=20\">Flash浏览</a><br><a style=font-size:9pt;line-height:14pt; href=\"show.asp?filetype=3&boardid=20\">音乐集浏览</a><br><a style=font-size:9pt;line-height:14pt; href=\"show.asp?filetype=4&boardid=20\">电影集浏览</a><br><a style=font-size:9pt;line-height:14pt; href=\"show.asp\">贺卡发送</a>'

//购物中心
var buylist= '<a style=font-size:9pt;line-height:14pt; href=\"shop/mygoods.aspx\">我的商品</a><br><a style=font-size:9pt;line-height:14pt; href=\"shop/shoplist.aspx\">超级市场</a><br><a style=font-size:9pt;line-height:14pt; href=\"User/EditProfile.aspx#110\">购买头衔</a><br><a style=font-size:9pt;line-height:14pt; href=\"modifysex.aspx\">特别医院</a><br><a style=font-size:9pt;line-height:14pt; href=\"renewme.aspx\">重新做人</a>'

//金融中心
var moneylist= '<a target=_blank style=font-size:9pt;line-height:14pt; href=\"http://pay.tiexue.net/bank.aspx\">个人财务中心</a><br><a target=_blank style=font-size:9pt;line-height:14pt; href=\"http://www.tiexue.net/shop/shoplist.aspx\">临时商业街</a><br><a target=_blank style=font-size:9pt;line-height:14pt; href=\"http://www.tiexue.net/shop/mygoods.aspx\">我的仓库</a><br><a target=_blank style=font-size:9pt;line-height:14pt; href=\"http://www.tiexue.net/shop/givinggoods.aspx\">礼尚往来</a><br><a target=_blank style=font-size:9pt;line-height:14pt; href=\"User/EpauletTran.aspx\">更换军种</a><!--<a style=font-size:9pt;line-height:14pt; href=\"User/GoldFloor.aspx\">金子楼</a><br><a style=font-size:9pt;line-height:14pt; href=\"User/MoneyTran.aspx\">货币转账</a><br><a style=font-size:9pt;line-height:14pt; href=\"User/BuyTitle.aspx\">购买头衔</a><br><a style=font-size:9pt;line-height:14pt; href=\"Admin/GiveGold.aspx\">铁血金库</a><br><a style=font-size:9pt;line-height:14pt; href=\"Admin/GiveSilver.aspx\">铁血银库</a><br><a style=font-size:9pt;line-height:14pt; href=\"Admin/GiveCopper.aspx\">铁血铜库</a><br><a style=font-size:9pt;line-height:14pt; href=\"Admin/GiveSalarys.aspx\">工分行</a>-->'

//安全管理
var safelist= '<a style=font-size:9pt;line-height:14pt; href=\"Affair/safecheck.aspx\">安全员初审</a><br><a  style=font-size:9pt;line-height:14pt; href=\"Affair/affairwork.aspx\">安全员复审</a><br><a  style=font-size:9pt;line-height:14pt; href=\"Affair/AffairAdmin.aspx\">积分榜</a><br><a  style=font-size:9pt;line-height:14pt; href=\"Affair/SafeWorkTran.aspx\">积分转换</a>'
//军法管理
var guanlist= '<a style=font-size:9pt;line-height:14pt; href=\"<%= Globals.GetSiteUrls().AllJailUserInfo %>">禁闭室</a><br><a style=font-size:9pt;line-height:14pt; href=\"toplist.asp?orders=8\">管理团队</a><br><a style=font-size:9pt;line-height:14pt; href=\"ViewManage.asp\ " target=_blank>版主考勤</a><br><a style=font-size:9pt;line-height:14pt; href=\"baodao.aspx\">总参点名簿</a>'

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -