淘先锋技术网

首页 1 2 3 4 5 6 7

惠普公司推出了一款HTML5拖动代码,这一功能可以方便开发者进行拖动操作,提高网页交互性。


//将一个div变为可拖动元素
dragElement(document.getElementById("div1"));

function dragElement(elmnt) {
  var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0;
  if (document.getElementById(elmnt.id + "header")) {
    //如果存在头部元素,则将头部元素指定为拖动区域
    document.getElementById(elmnt.id + "header").onmousedown = dragMouseDown;
  } else {
    //否则,整个元素可以拖动
    elmnt.onmousedown = dragMouseDown;
  }

  function dragMouseDown(e) {
    e = e || window.event;
    e.preventDefault();
    //获取当前鼠标点击位置
    pos3 = e.clientX;
    pos4 = e.clientY;
    document.onmouseup = closeDragElement;
    //每当鼠标移动时,执行dragElement函数
    document.onmousemove = elementDrag;
  }

  function elementDrag(e) {
    e = e || window.event;
    e.preventDefault();
    //计算鼠标移动距离,计算当前元素的位置
    pos1 = pos3 - e.clientX;
    pos2 = pos4 - e.clientY;
    pos3 = e.clientX;
    pos4 = e.clientY;
    elmnt.style.top = (elmnt.offsetTop - pos2) + "px";
    elmnt.style.left = (elmnt.offsetLeft - pos1) + "px";
  }

  function closeDragElement() {
    //释放鼠标事件
    document.onmouseup = null;
    document.onmousemove = null;
  }
}

惠普html5拖动代码

上述代码将指定元素变为可拖动元素,通过在页面调用函数,即可实现拖动功能。该功能对于开发者而言十分有用,可以大大提升用户体验,希望广大开发者可以善加利用。