posTop, posLeft, pixelTop, pixelLeft, top, left ¼Ó¼º ¿¹Á¦

À̹ÌÁö¸¦ Ŭ¸¯Çغ¸¶ó.
°á°ú Ç¥½Ãâ

À̹ÌÁöµµ Ŭ¸¯Çغ¸¶ó. posLeft ¼Ó¼ºÀ» »ç¿ëÇÏ¿© img °³Ã¼¸¦ À̵¿½ÃŲ´Ù.

<SCRIPT>
function doShow(){
  str='imgObj.style.posTop='+imgObj.style.posTop+'<BR>';
  str+='imgObj.style.posLeft='+imgObj.style.posLeft+'<BR>';
  str+='imgObj.style.pixelTop='+imgObj.style.pixelTop+'<BR>';
  str+='imgObj.style.pixelLeft='+imgObj.style.pixelLeft+'<BR>';
  str+='imgObj.style.top='+imgObj.style.top+'<BR>';
  str+='imgObj.style.left='+imgObj.style.left+'<BR>';

  showB.innerHTML=str;
}
function moveAll(){
  if (imgObj.style.posLeft>10){
    imgObj.style.posLeft -=10;
    imgObj.style.posTop+=4;
    doShow();
    window.setTimeout('moveAll();', 100);
  }
}
</SCRIPT>

<IMG src=../../../gif/arbackv.gif id=imgObj
  style="position:relative;top:10;left:400"
  onclick="this.style.posLeft-=20;this.style.posTop+=8;doShow();" alt="À̹ÌÁö¸¦ Ŭ¸¯Çغ¸¶ó.">
<BUTTON onclick="moveAll()">°è¼Ó À̵¿</BUTTON>
<BUTTON onclick="imgObj.style.top='10';imgObj.style.left='400';">óÀ½ À§Ä¡·Î</BUTTON>
<DIV id=showB>°á°ú Ç¥½Ãâ</DIV>