年无分老少,事无分难易,但行之有恒,恒之,何三起,五眠 注册 | 登陆
浏览模式: 标准 | 列表2007年03月的文章

一款盗风格软件

使用说明:

0.解压了,把msvcr70.dll移到你解压的根目录下就可以了

1.打开webgeter,在图框中输入你需要盗取风格的网站网址,这是会在桌面上产生一个Reaped Sites文件夹


2.从Reaped Sites中文件中找到image、data、template三个文件夹,从中提取你所需要的风格文件即可。

» 阅读全文

IIS Win2000、XP、2003 ...

Microsoft IIS 是允许在公共Intranet或Internet上发布信息的Web服务器

根据您的系统下载相应的版本:下载后解压-开始--控制面版---添加删除程序---添加删除Windows组件---选择安装IIS

安装确定后点击浏览,然后自己找下路径就可以安装了!

注:安装过程中缺少*.chm,取消并且继续安装,*.chm只是帮助文档!
相关搜索: http://www.baidu.com/baidu...

下载地址

仿网易163首页鼠标滑动效


代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml...
<html xmlns="http://www.w3.org/1999/xht...
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>DIV+CSS仿网易的滑动门技术AJAX</title>
<style type="text/css">
<!--
#header {
background-color: #F8F4EF;
height: 200px;
width: 400px;
margin: 0px;
padding: 0px;
border: 1px solid #ECE1D5;
font-family: "宋体";
font-size: 12px;
}
#menu {
margin: 0px;
padding: 0px;
list-style-type: none;
}
#menu li {
display: block;
width: 100px;
text-align: center;
float: left;
margin: 0px;
padding-top: 0.2em;
padding-right: 0px;
padding-bottom: 0.2em;
padding-left: 0px;
cursor: hand;
}
.sec1 { background-color: #FFFFCC;}
.sec2 { background-color: #00CCFF;}
.block { display: block;}
.unblock { display: none;}
-->
</style>
</head>
<body>
<script language=javascript>
function secBoard(n)

{

for(i=0;i<menu.childNodes.length;i++)
menu.childNodes[i].className="sec1";
menu.childNodes[n].className="sec2";

for(i=0;i<main.childNodes.length;i++)
main.childNodes[i].style.display="none";
main.childNodes[n].style.display="block";

}
</script>
<div id="header">
 <ul id="menu">
   <li onMouseOver="secBoard(0)" class="sec2">最新新闻</li>
   <li onMouseOver="secBoard(1)" class="sec1">最新文章</li>
   <li onMouseOver="secBoard(2)" class="sec1">最新日志</li>
   <li onMouseOver="secBoard(3)" class="sec1">论坛新帖</li>
 </ul>
 <!--内容显示区域-->
 <ul id="main">
   <li class="block">第一个内容</li>
   <li class="unblock">第二个内容</li>
   <li class="unblock">第三个内容</li>
   <li class="unblock">第四个内容</li>
 </ul>
 <!--内容显示区域-->
</div>
</body>
</html>

转:http://www.itdowns.com/edu...

无法拦截与屏蔽的网页漂浮图片广告代码

代码:
<script type="text/javascript">
var imagepath="/andy.jpg"
var imagewidth=198 //这两行写图片的大小
var imageheight=158
var speed=2;
var imageclick="/andy.php" //这里写点击图片连接到的地址
var hideafter=0
var isie=0;
if(window.navigator.appName=="Microsoft Internet Explorer"&&window.navigator.appVersion.substring(window.navigator.appVersion.indexOf("MSIE")+5,window.navigator.appVersion.indexOf("MSIE")+8)>=5.5) {
isie=1;
}
else {
isie=0;
}
if(isie){
var preloadit=new Image()
preloadit.src=imagepath
}
function pop() {
if(isie) {
x=x+dx;y=y+dy;
oPopup.show(x, y, imagewidth, imageheight);
if(x+imagewidth+5>screen.width) dx=-dx;
if(y+imageheight+5>screen.height) dy=-dy;
if(x<0) dx=-dx;
if(y<0) dy=-dy;
startani=setTimeout("pop();",50);
}
}
function dismisspopup(){
clearTimeout(startani)
oPopup.hide()
}
function dowhat(){
if (imageclick=="dismiss")
dismisspopup()
else
window.open(imageclick);
}
if(isie) {
var x=0,y=0,dx=speed,dy=speed;
var oPopup = window.createPopup();
var oPopupBody = oPopup.document.body;
oPopupBody.style.cursor="hand"
oPopupBody.innerHTML = '<IMG SRC="'+preloadit.src+'">';
oPopup.document.body.onmouseover=new Function("clearTimeout(startani)")
oPopup.document.body.onmouseout=pop
oPopup.document.body.onclick=dowhat
pop();
if (hideafter>0)
setTimeout("dismisspopup()",hideafter*1000)
}
</script>
Records:131234