js实现带框的拖拽效果

小云云
小云云 原创
2018-03-26 16:55:31 1039浏览

本文主要和大家分享js实现带框的拖拽效果,主要以代码的形式和大家分享,希望能帮助到大家。

<!doctype html>
<html>
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
  <style>
  #box {
  width:100px;
  height:100px;
  background:#ff0099;
  position:absolute;
  
  }
  .box1 {
  border:1px solid #000000;
  position:absolute;
  
  }
  </style>
 </head>
 <body>
 <p id = 'box'></p>
 <script>
 var box = document.getElementById('box');
     box.onmousedown = function(e){
  var box1 = document.createElement("p");
    document.body.appendChild(box1);
    box1.style.width = box.offsetWidth + 'px';
    box1.style.height = box.offsetHeight + 'px';
 box1.style.left = box.offsetLeft + 'px';
 box1.style.top = box.offsetTop + 'px';
    box1.className = 'box1';
    e = e || event;
 //计算鼠标在盒子中的位置;
 var x = e.pageX - box.offsetLeft;
 var y = e.pageY - box.offsetTop;
 document.onmousemove = function(e){


  e = e || event;
  //计算盒子在页面上的坐标;
  var xx = e.pageX - x;
  var yy = e.pageY - y;
  box1.style.left = xx + 'px';
  box1.style.top = yy + 'px';
 document.onmouseup = function(){
 box.style.left = box1.offsetLeft + 'px';
 box.style.top = box1.offsetTop + 'px';
 document.body.removeChild(box1);
 document.onmousemove = 'null';
 
 
 
 }
 
 return false;
 }
 
 
 }
 
 
 </script>
 </body>
</html>

以上就是js实现带框的拖拽效果的详细内容,更多请关注php中文网其它相关文章!

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
上一条:js中数组常用的方法 下一条:掌握js函数