출처 : http://blog.naver.com/bboyah?Redirect=Log&logNo=80013536668
<script>
var dragapproved=false
function drag_dropie(){
if (dragapproved==true){
document.all.showimage.style.pixelLeft=tempx+event.clientX-iex
document.all.showimage.style.pixelTop=tempy+event.clientY-iey
return false
}
}
function initializedragie(){
iex=event.clientX
iey=event.clientY
tempx=showimage.style.pixelLeft
tempy=showimage.style.pixelTop
dragapproved=true
document.onmousemove=drag_dropie
}
if (document.all){
document.onmouseup=new Function("dragapproved=false")
}
</script>
<div id="showimage" style="position:absolute;width:250px;left:300px;top:200px">
<table border="1" onMousedown="initializedragie()" style="cursor:hand" >
<tr>
<td> 움직일.. 레이어창.. </td>
</tr>
</table>
</div>
'쓸만한 글' 카테고리의 다른 글
marquee 태그 (0) | 2006.06.28 |
---|---|
자바스크립트 스타일시트 (0) | 2006.06.23 |
onClick, onmouseup, onmousedown, onkeydown, onkeypress (0) | 2006.06.23 |
미디어 플레이어 제어하기 네 번째 (0) | 2006.06.23 |
미디어 플레이어 제어하기 세 번째 (0) | 2006.06.23 |