functionshow(layername){
if(!document.getElementById)returnfalse;
if(!document.getElementById(layername))returnfalse;
varlayer=document.getElementById(layername);
layer.style.width="0px";
layer.style.height="0px";
layer.style.display="block";
movement=setTimeout("animation()",0)
}
functionanimation(){
if(!document.getElementById)returnfalse;
if(!document.getElementById(layername))returnfalse;
varlayer=document.getElementById(layername);
varxpos=parseInt(layer.style.width);
varypos=parseInt(layer.style.height);
if(xpos==480&&ypos==80){
returntrue;
}
if(xpos<480){
xpos+=10
}
if(xpos>480){
xpos-=10
}
if(ypos<80){
ypos+=10
}
if(ypos>80){
ypos-=10
}
layer.style.width=xpos+"px";
layer.style.height=ypos+"px";
movement=setTimeout("animation()",0);
}
以下是html