drag2

来源:互联网 发布:淘宝店食品安全许可证 编辑:程序博客网 时间:2024/06/08 07:44
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<script>  
var  ms=0;  
var src=0;
var srcWidth=0;
var srcHeight=0;
var len="10px";
function  did(obj,targ){  
         ms
=obj;
         src
=targ;
         document.getElementById(src).style.backgroundColor
="#e0e0e0";
         
         document.getElementById(src).style.width
= "250px";
         document.getElementById(src).style.height
= "80px";
      
         
         event.srcElement.setCapture();  
         x
=document.all(ms).style.pixelLeft-event.x;  
         y
=document.all(ms).style.pixelTop-event.y;  
}
  

function  document.onmousemove(){  
if(ms){  
        
        
        
        
         
        document.getElementById(ms).style.pixelLeft
=x+event.x;  
         document.getElementById(ms).style.pixelLeft
=x+event.x;  
         document.getElementById(ms).style.pixelTop
=y+event.y;  
         }
  
}
  

function  document.onmouseup(){  
if(ms){  
        document.getElementById(src).style.backgroundColor
="#f2f2f2";
        document.getElementById(src).style.width
= "300px";
         document.getElementById(src).style.height
= "100px";
         event.srcElement.releaseCapture();  
         
         ms
=0;  
         }
  
}
  
</script>  

<body>
    
<div id="a1" style="position:absolute; ">
    
<div id="a2" onmousedown="did('a1','a2')"  style="background-color: #f2f2f2; height:100px; width:300px; cursor: move;">拖动层</div>
    
</div>
</body>
原创粉丝点击