<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>
'인터넷관련' 카테고리의 다른 글
select 태그 활용법 - 셀렉트박스, 콤보박스 (0) | 2008.02.16 |
---|---|
IE의 검색엔진를 원하는 것으로 해보자 (0) | 2008.02.16 |
전화번호 자동 정리 - 전화번호 하이픈 넣기 (0) | 2008.02.16 |
Select 메뉴의 border 숨기기 (0) | 2008.02.16 |
인쇄 미리 보기 및 페이지 설정 버튼 만드는 방법 (0) | 2008.02.16 |
PHP 테이블 중복 확인후 생성하기 create table if not exists board (0) | 2008.02.16 |
이미지 크기 알아내기 (0) | 2008.02.16 |
자바스크립에서 쿠기 설정/읽기/삭제 (0) | 2008.02.16 |