<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>
반응형
'인터넷정보' 카테고리의 다른 글
IE의 검색엔진를 원하는 것으로 해보자 (0) | 2007.10.11 |
---|---|
전화번호 자동 정리 - 전화번호 하이픈 넣기 (0) | 2007.10.11 |
전화번호 자동 정리 - 전화번호 하이픈 넣기 (0) | 2007.10.11 |
Select 메뉴의 border 숨기기 (0) | 2007.10.11 |
Select 메뉴의 border 숨기기 (0) | 2007.10.11 |
마우스로 드래그되는 레이어창 스크립트 (0) | 2007.10.11 |
인쇄 미리 보기 및 페이지 설정 버튼 만드는 방법 (0) | 2007.10.11 |
인쇄 미리 보기 및 페이지 설정 버튼 만드는 방법 (0) | 2007.10.11 |
PHP 테이블 중복 확인후 생성하기 create table if not exists board (0) | 2007.10.11 |
PHP 테이블 중복 확인후 생성하기 create table if not exists board (0) | 2007.10.11 |