📄 说明.htm
字号:
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta http-equiv="refresh" content="26; url=http://Www.punze.coM">
<title>庞智网站软件下载说明</title>
<style>A {
FONT-SIZE: 12px; COLOR: #000000; TEXT-DECORATION: none
}
A:hover {
COLOR: #ffcc00
}
A.blue {
COLOR: darkblue
}
body, p, td {
FONT-SIZE: 12px
}</style>
</head>
<body style="BORDER-RIGHT: #cccccc 1px solid; BORDER-TOP: #000000 1px solid; MARGIN: 0pt; OVERFLOW: hidden; BORDER-LEFT: #cccccc 1px solid; BORDER-BOTTOM: #cccccc 1px solid" bgColor="#33CC33" leftMargin="0" topMargin="10">
<div align="center">
<center>
<p> </p>
<p> </p>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse; border-style: dotted; border-width: 1" bordercolor="#000000" width="693" height="347" id="AutoNumber1">
<tr>
<td width="691" height="20" bgcolor="#FF0000" bordercolor="#FF0000"><font color="#FFFFFF"> ·庞智网站软件
& 下载说明</font></td>
</tr>
<tr>
<td width="691" height="302" bgcolor="#FFFFFF" valign="top"><br>
您下载的该文件来自庞智网站的下载频道||||<a href="http://www.punze.com">http://www.<font color="#FF0000" style="font-size: 11pt; font-weight: 700">punze</font>.com</a><br>
<br>
使用前请您先阅读以下条款,否则请勿使用本站提供的文件!<br>
1) 本站不保证所提供软件或程序的完整性和安全性。<br>
2) 虽然本站软件经过多方查毒,但请您在使用前还是再次查毒已保证其安全 (这也是您使用其它网络资源所必须注意的) 。<br>
3) 近来部分国产软件、汉化安装程序捆绑流氓插件,请在安装过程谨慎点击每一个下一步(大部分流氓插件是可以在安装软件时去掉选项的)。<br>
4) 由本站提供的程序对您的网站或计算机造成严重后果的本站概不负责
(本站软件来源均为网络收集或作者免费提供,提供免费下载,只为方便网民试用研究,所以本站也决不对任何网民收取分文报酬,如果你在使用后,觉得软件确实不错,那么请您支持正版,以支持他们的辛苦工作,当然,你也会得到更好的更新服务和售后服务)<br>
5) 转载本站提供的资源请勿删除本说明文件。<br>
6) 本站提供的程序均为网上搜集,如果该程序涉及或侵害到您的版权请立即写信通知我们,我们将第一时间配合您删除软件。<p>
<a href="http://www.punze.com/">请多多关注我们的网站<font color="#FF0000">www.punze.com</font>,服务大众,就是我们办站的宗旨,您们的支持,就是我们的强大动力。</a></p>
<p> </p>
<p> 联系管理员: <a href="mailto:rjgl@punze.com">rjgl@punze.com</a><br>
<a href="mailto:rjgl@punze.com"><span lang="en-us">
</span></a> <a href="http://www.punze.com"> <font size="2"><i>w</i></font><i><font size="2">ww.</font><font style="font-size: 11pt" color="#0000FF">punze</font><font size="2">.com</font><font size="2"><b><font color="#FF0000">!</font><font color="#FFFF00">!</font><font color="#009ACE">!</font></b></font></i></a></p>
</td>
</tr>
<tr>
<td width="691" height="27" bgcolor="#FFFF00" bordercolor="#008000">
<marquee onmouseover="this.stop()" onmouseout="this.start()" scrollamount="50" scrolldelay="100" behavior="slide" loop="1">
<a href="http://wWW.punze.cOM">P U N Z E . C O M Powered by PUNZE.STUDIO</a></marquee> </td>
</tr>
</table>
</center>
</div>
<p align="center">
</p>
<script language="JavaScript">
<!-- Begin
var rate = 20;
var obj;
var act = 0;
var elmH = 0;
var elmS = 128;
var elmV = 255;
var clrOrg;
var TimerID;
if (navigator.appName.indexOf("Microsoft",0) != -1 && parseInt(navigator.appVersion) >= 4) {
Browser = true;
} else {
Browser = false;
}
if (Browser) {
document.onmouseover = doRainbowAnchor;
document.onmouseout = stopRainbowAnchor;
}
function doRainbow()
{
if (Browser && act != 1) {
act = 1;
obj = event.srcElement;
clrOrg = obj.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
function stopRainbow()
{
if (Browser && act != 0) {
obj.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
function doRainbowAnchor()
{
if (Browser && act != 1) {
obj = event.srcElement;
while (obj.tagName != 'A' && obj.tagName != 'BODY') {
obj = obj.parentElement;
if (obj.tagName == 'A' || obj.tagName == 'BODY')
break;
}
if (obj.tagName == 'A' && obj.href != '') {
act = 1;
clrOrg = obj.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
function stopRainbowAnchor()
{
if (Browser && act != 0) {
if (obj.tagName == 'A') {
obj.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
function ChangeColor()
{
obj.style.color = makeColor();
}
function makeColor()
{
if (elmS == 0) {
elmR = elmV; elmG = elmV; elmB = elmV;
}
else {
t1 = elmV;
t2 = (255 - elmS) * elmV / 255;
t3 = elmH % 60;
t3 = (t1 - t2) * t3 / 60;
if (elmH < 60) {
elmR = t1; elmB = t2; elmG = t2 + t3;
}
else if (elmH < 120) {
elmG = t1; elmB = t2; elmR = t1 - t3;
}
else if (elmH < 180) {
elmG = t1; elmR = t2; elmB = t2 + t3;
}
else if (elmH < 240) {
elmB = t1; elmR = t2; elmG = t1 - t3;
}
else if (elmH < 300) {
elmB = t1; elmG = t2; elmR = t2 + t3;
}
else if (elmH < 360) {
elmR = t1; elmG = t2; elmB = t1 - t3;
}
else {
elmR = 0; elmG = 0; elmB = 0;
}
}
elmR = Math.floor(elmR);
elmG = Math.floor(elmG);
elmB = Math.floor(elmB);
clrRGB = '#' + elmR.toString(16) + elmG.toString(16) + elmB.toString(16);
elmH = elmH + rate;
if (elmH >= 360)
elmH = 0;
return clrRGB;
}
// End -->
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -