美文网首页
js实现元素拖拽

js实现元素拖拽

作者: JeseeLuo | 来源:发表于2017-03-16 09:38 被阅读0次

    被移动元素必须为绝对定位

    position:absolute;
    

    Dom

      <div class = "move-container" >
          <div class = "move" style="position:absolute; width:100px; height:100px; background:gray">
          </div>
      </div> 
    

    Javasrtipt

    var moveElem = document.querySelector('.move'); //待拖拽元素      
    var moveElemParent = moveElem.parentNode; //待拖拽元素的父元素
    
    var dragging; //是否激活拖拽状态
    var tLeft, tTop; //鼠标按下时相对于选中元素的位移
    
    //监听鼠标按下事件
    document.addEventListener('mousedown', function(e) {
        if (e.target == moveElem) 
            dragging = true; //激活拖拽状态
           var moveElemRect = moveElem.getBoundingClientRect();
            tLeft = e.clientX - moveElemRect.left; //鼠标按下时和选中元素的坐标偏移:x坐标
            tTop = e.clientY - moveElemRect.top; //鼠标按下时和选中元素的坐标偏移:y坐标
        }
    });
    
    //监听鼠标放开事件
    document.addEventListener('mouseup', function(e) {
        dragging = false;
    });
    
    //监听鼠标移动事件
    document.addEventListener('mousemove', function(e) {
        if (dragging) {
            var moveX = e.clientX - tLeft, 
                  moveY = e.clientY - tTop;
    
            moveElem.style.left = moveX + 'px';
            moveElem.style.top = moveY + 'px';
          
        }
    });
    

    相关文章

      网友评论

          本文标题:js实现元素拖拽

          本文链接:https://www.haomeiwen.com/subject/zwsdnttx.html