http://oxtag.com/html/ex/ex/ex112/ex1234.html


<script language="JavaScript" SRC="./moveobj.js"> </script>

<script>
<!--

var chip1;
var chip2;
var chip3;
//add or delete more variables, depending on how many images you're using

function pagestart()
{checkbrOK();
 chip1=new Chip("chip1",60,80);
 chip2=new Chip("chip2",60,80);
 chip3=new Chip("chip3",60,80);
 //add or delete more of the above, depending on how many images you're using
 if(brOK)
   { movechip("chip1");
     movechip("chip2");
     movechip("chip3");
     //add or delete more of the above, depending on how many images you're using
   }
}

//-->
</script>

<DIV ID="chip1" STYLE="position:absolute; width:47; height:68;">
<IMG SRC="animal1.gif" BORDER=0>
</DIV>

<DIV ID="chip2" STYLE="position:absolute; width:47; height:68;">
<IMG SRC="animal2.gif" BORDER=0>
</DIV>

<DIV ID="chip3" STYLE="position:absolute; width:47; height:68;">
<IMG SRC="animal3.gif" BORDER=0>
</DIV>


<script>
 pagestart();
</script>

Posted by 알 수 없는 사용자
,