js解决movebox移动问题
来源: 阅读:873 次 日期:2016-07-15 15:14:41
温馨提示: 小编为您整理了“js解决movebox移动问题”,方便广大网友查阅!

本文为大家分享了js解决movebox移动问题,并且取消图片默认拖动事件的相关操作,供大家参考,具体内容如下

html:

<!DOCTYPE html> 

<html> 

<head> 

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 

  <link href="../Content/StyleSheet5.css" rel="stylesheet" /> 

  <script src="../Scripts/JavaScript5.js"></script> 

  <title></title> 

  <meta charset="utf-8" /> 

</head> 

<body> 

  <div id="center"> 

    <div id="black"></div> 

    <div id="movebox"> 

      <img id="moveimg" src="../Images/b.jpg"/> 

    </div> 

    <img id="bigimg" src="../Images/b.jpg" /> 

  </div> 

</body> 

</html>

js:

var movebox; 

window.onload = function () { 

  movebox = document.getElementById("movebox"); 

  movebox.addEventListener("mousedown", function (e) { 

    if (e.button > 0) { 

      fun2(); 

      return false; 

    } 

    e.preventDefault && e.preventDefault(); //明哥:去掉图片拖动响应 狠重要 

    gen.x = e.clientX; 

    gen.y = e.clientY; 

    gen._x = movebox.offsetLeft; 

    gen._y = movebox.offsetTop; 

    gen.dx = gen.x - gen._x; 

    gen.dy = gen.y - gen._y; 

    document.addEventListener("mousemove",fun1,false); 

    document.addEventListener("mouseup", fun2, false); 

  }, false); 

}; 

var fun1 = function (e) { 

  gen.L = e.clientX - gen.dx; 

  gen.T = e.clientY - gen.dy; 

  var timefun = function () { 

    window.getSelection().removeAllRanges(); 

    if (gen.L < 100) 

      gen.L = 100; 

    else if (gen.L > 200) 

      gen.L = 200; 

    if (gen.T < 125) 

      gen.T = 125; 

    else if (gen.T > 175) 

      gen.T = 175; 

    setLT(movebox, gen.L, gen.T); 

  }; 

  setTimeout(timefun, 2); 

}; 

var fun2 = function () { 

  document.removeEventListener("mousemove", fun1, false); 

  document.removeEventListener("mouseuo", fun2, false); 

}; 

var gen = { 

  x: null, 

  y: null, 

  _x: null, 

  _y: null, 

  dx: null, 

  dy: null, 

  L: null, 

  T:null, 

}; 

var setLT = function (dom, L, T) { 

  dom.style.left = L + "px"; 

  dom.style.top = T + "px"; 

};

css:

body { 

  position:absolute; 

  margin:0; 

  padding:0; 

#center{ 

  position:absolute; 

  top:200px; 

  left:300px; 

  width:400px; 

  height:400px; 

  background-color:#808080; 

#black{ 

  position:absolute; 

  width:400px; 

  height:400px; 

  z-index:80; 

  background-color:#000; 

  opacity:0.6; 

#bigimg{ 

  z-index:50; 

  position:absolute; 

  left:100px; 

  top:125px; 

#movebox{ 

  z-index:100; 

  position:absolute; 

  width:100px; 

  height:100px; 

  left:150px; 

  top:150px; 

  overflow:hidden; 

  cursor:move; 

  background-color:#ff6a00; 

#moveimg{ 

  position:absolute; 

  left:-50px; 

  top:-25px; 

以上就是本文的全部内容,希望对大家的学习有所帮助。

更多信息请查看网络编程
手机网站地址:js解决movebox移动问题
由于各方面情况的不断调整与变化, 提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:
云南网警报警专用图标
Baidu
map