什么时候喝苹果醋最好:为什么我的雪花背景老是被IE拦截?

来源:百度文库 编辑:中科新闻网 时间:2024/05/10 14:53:04
第一次做网页,到处找特效代码,又看不懂,只好乱改了,下面是被我改得不像样了的一段代码,但还可以实现两个功能,一是雪花前景,一是自动滚屏,但是这两样在网页打开的时候都会被IE自动拦截,哪位帅哥美女帮帮忙,给点意见,或者好人做到底,把好的代码给我算了,在下感激不尽啊
<body onLoad="fall()& initialize()">
<script language="JavaScript">
<!--
Image0=new Image();
Image0.src="5.gif";
Image1=new Image();
Image1.src="5.gif";
Image2=new Image();
Image2.src="5.gif";
Image3=new Image();
Image3.src="5.gif";
Image4=new Image();
Image4.src="5.gif";
Image5=new Image();
Image5.src="5.gif";

grphcs=new Array(6)
grphcs[0]="5.gif"
grphcs[1]="5.gif"
grphcs[2]="5.gif"
grphcs[3]="5.gif"
grphcs[4]="5.gif"
grphcs[5]="5.gif"

Amount=10; //Smoothness depends on image file size, the smaller the size the more you can use!
Ypos=new Array();
Xpos=new Array();
Speed=new Array();
Step=new Array();
Cstep=new Array();
ns=(document.layers)?1:0;

if (ns){
for (i = 0; i < Amount; i++){
var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P];
document.write("<LAYER NAME='sn"+i+"' LEFT=0 TOP=0><img src="+rndPic+"></LAYER>");
}
}
else{
document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">');
for (i = 0; i < Amount; i++){
var P=Math.floor(Math.random()*grphcs.length);
rndPic=grphcs[P];
document.write('<img id="si" src="'+rndPic+'" style="position:absolute;top:0px;left:0px">');
}
document.write('</div></div>');
}
WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
for (i=0; i < Amount; i++){
Ypos[i] = Math.round(Math.random()*WinHeight);
Xpos[i] = Math.round(Math.random()*WinWidth);
Speed[i]= Math.random()*5+3;
Cstep[i]=0;
Step[i]=Math.random()*0.1+0.05;
}
function fall(){
var WinHeight=(document.layers)?window.innerHeight:window.document.body.clientHeight;
var WinWidth=(document.layers)?window.innerWidth:window.document.body.clientWidth;
var hscrll=(document.layers)?window.pageYOffset:document.body.scrollTop;
var wscrll=(document.layers)?window.pageXOffset:document.body.scrollLeft;
for (i=0; i < Amount; i++){
sy = Speed[i]*Math.sin(90*Math.PI/180);
sx = Speed[i]*Math.cos(Cstep[i]);
Ypos[i]+=sy;
Xpos[i]+=sx;
if (Ypos[i] > WinHeight){
Ypos[i]=-60;
Xpos[i]=Math.round(Math.random()*WinWidth);
Speed[i]=Math.random()*5+3;
}
if (ns){
document.layers['sn'+i].left=Xpos[i];
document.layers['sn'+i].top=Ypos[i]+hscrll;
}
else{
si[i].style.pixelLeft=Xpos[i];
si[i].style.pixelTop=Ypos[i]+hscrll;
}
Cstep[i]+=Step[i];
}
setTimeout('fall()',40);
}
//-->

function initialize()

{

timer=setInterval("scrollwindow()",80);

}

function scrollwindow()

{

currentpos=document.body.scrollTop;

window.scroll(0,++currentpos);

if (currentpos != document.body.scrollTop)

sc();

}

</script>
除了把拦截浮动广告的勾去还有什么办法?
我是做给别人看的,对我来说很重要一个人啊,大家帮帮忙

这的确比较难,很多网站长绞尽脑汁在校如何让IE助手不拦截自己的广告,但目前浮动广告基本没有不被拦截的!