复制代码代码如下: JavaScript 防御 PS 里の羽化效果代码 - www.jb51.net <br><!-- JavaScript の始まり - <BR>var x,y <BR>var marginbottom <BR>var marginleft=0 <BR>var margintop=0 <BR>var marginright <BR>var Cliptop <BR>var Clipbottom <BR>var Clipleft <BR>var Clipright <BR>var Clippoints <BR>var ballheight=150 <BR>var ballwidth=150 <BR>var imageheight=525 <BR>var imagewidth=457 <BR>varテンポ=25 <BR>var stepx=12 <BR>var stepy=6 <BR>var timer <BR>function setValues() { <BR>if (document.all) { <BR>marginbottom = imageheight-ballheight <BR>marginright = imagewidth-ballwidth <BR>document.all.ball.style.posLeft=randommaker(400) <BR>document.all.ball.style.posTop=0 <BR>document.all.textcontent.style.posLeft= 0 <BR>document.all.textcontent.style.posTop=0 <BR>document.all.ball.style.filter="alpha(opacity=0,finishopacity=100,style=2,startX=0px,startY=0px) ,finishX=100px,finishY=100px)" <BR>moveball() <BR>} <BR>} <BR>//randomfunction <BR>function randommaker(range) { <BR>rand=Math.floor(range* Math.random()) <BR>return rand <BR>} <BR>function moveball() { <BR>checkposition() <BR>if (document.all) { <BR>document.all.ball.style. posLeft =stepx <BR>document.all.ball.style.posTop =stepy <BR>cliptop=document.all.ball.style.posTop <BR>clipbottom=cliptop ballheight <BR>clipleft=document.all.ball.style .posLeft <BR>clipright=clipleft ballwidth <BR>clippoints="rect(" Cliptop " " Clipright " " Clipbottom " " Clipleft ")" <BR>document.all.textcontent.style.clip=clippoints <BR>timer= setTimeout("moveball()",tempo) <BR>} <BR>} <BR>function checkposition() { <BR>if (document.all) { <BR>if (document.all.ball.style.posLeft>) ;=marginright) { <BR>stepx=stepx*-1 <BR>document.all.ball.style.posLeft-=10 <BR>} <BR>if (document.all.ball.style.posLeft<=marginleft ) { <BR>stepx=stepx*-1 <BR>document.all.ball.style.posLeft =10 <BR>} <BR>if (document.all.ball.style.posTop>=marginbottom) { <br>stepy=stepy*-1 <br>document.all.ball.style.posTop-=10 <br>} <br>if (document.all.ball.style.posTop<=margintop) { <BR>stepy= stepy*-1 <BR>document.all.ball.style.posTop =10 <BR>} <BR>} <BR>} <BR>// - JavaScript の終わり - --> <br>