window.onload=function(e){ // 浮标 var fubiao=document.getElementById("fubiao"); var ufo=document.getElementById("ufo"); var close=document.getElementById("close"); var speed1=5; var speed2=5; function run(){ var nowleft=fubiao.offsetLeft; var nowtop=fubiao.offsetTop; var newleft=parseInt(nowleft)+speed1; var newtop=parseInt(nowtop)+speed2; var maxleft=document.documentElement.clientWidth-90; var maxtop=document.documentElement.clientHeight-70; if(newleft>maxleft||newleft<0){ speed1*=-1; } if(newtop>maxtop||newtop<0){ speed2*=-1; } fubiao.style.left=newleft+'px'; fubiao.style.top=newtop+'px'; } var timer=setInterval(run,100); fubiao.onmouseover=function(){ clearInterval(timer); } fubiao.onmouseout=function(){ clearInterval(timer); timer=setInterval(run,100); } close.onclick=function(){ fubiao.style.display='none'; } window.onresize=function(){ fubiao.style.left=0; fubiao.style.top=0; }修改
(´・・)ノ(._.`)
还没有内容呢!等待求助被解决(酬谢/撤销)后,求助人或好心人总结……