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

📄 system.js

📁 视频源代码 视频源代码
💻 JS
字号:
/*
Copyright 2001~2002 WWW.ZWCITY.COM 易影中国. All rights reserved.
Write by	2002-4-1
Edit  by	XiaoZeLin
Emailto:	XiaoZeLin@163.net
HomePage:	http://www.zwcity.com
Address:	Shantou Guangdong China
*/

isIE = (document.all ? true : false);
isNS = (document.layers ? true : false);

function getFromID(eltname){
  if (isIE) return document.all[eltname];
  else if (isNS) return document.layers[eltname];
  else return false;
}

function getXBrowserRef(eltname) {
  return (isIE ? document.all[eltname].style : document.layers[eltname]);
}

function hideElement(eltname) {getXBrowserRef(eltname).visibility = 'hidden';}

function getIEPos(elt,which) {
 iPos = 0
 while (elt!=null) {
  iPos += elt["offset" + which]
  elt = elt.offsetParent
 }
 return iPos
}

function getIEPosX(elt) { return getIEPos(elt,"Left"); }
function getIEPosY(elt) { return getIEPos(elt,"Top"); }

function setPosition(elt,positionername,moveX,moveY) {
  positioner = document.all[positionername];
  elt = getXBrowserRef(elt);
  elt.left = getIEPosX(positioner);
  elt.top = getIEPosY(positioner);
  elt.visibility = 'visible';
  if (moveX!=null) elt.left = elt.pixelLeft + moveX;
  if (moveX!=null) elt.top  = elt.pixelTop  + moveY;
}


var html_head = 
'<html>\n'+
'<head>\n'+
'<meta http-equiv="Pragma" content="no-cache">\n'+
'<meta http-equiv="Window-target" content="_top">\n'+
'<meta http-equiv="Content-Language" content="zh-cn">\n'+
'<meta http-equiv="Content-Type" content="text/html; charset=gb2312">\n'+
'<title>易影中国</title>\n'+
'</head>\n'+
'<style>\n'+
'body{margin:0px;scrollbar-face-color:buttonface;scrollbar-highlight-color:buttonface;scrollbar-shadow-color:buttonface;scrollbar-3dlight-color:buttonhighlight;scrollbar-arrow-color:#797979;scrollbar-track-color:#EEEEEE;scrollbar-darkshadow-color:buttonshadow}\n'+
'body,a,table,div,span,td,th,input,select{font:9pt;font-family: "宋体", Verdana, Arial, Helvetica, sans-serif;}\n'+
'.text{border:1 solid buttonface;background-color:buttonhighlight}\n'+
'.button{height:18;border:1 ridge buttonhighlight;background-color:buttonface}\n'+
'#box{width:9pt;height:9pt;}\n'+
'</style>\n'+
'<body border=0 marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 onSelectStart="event.returnValue=false;" onConTextMenu="event.returnValue=false">';

⌨️ 快捷键说明

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