源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

javascript dragable的Move对象

  • 时间:2020-03-30 02:08 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:javascript dragable的Move对象
[Ctrl+A 全选 注:[url=http://www.1sucai.cn/article/23421.htm]如需引入外部Js需刷新才能执行[/url]]
其中比较重要的代码:
[u]复制代码[/u] 代码如下:
var Move = { $: function(id){ return (typeof id == "object") ? id : document.getElementById(id); }, pageX: function(elem){ //获取目标elem的X坐标 return elem.offsetParent ? //如果能继续得到上一个元素,增加当前的偏移量并继续向上递归 elem.offsetLeft + this.pageX(elem.offsetParent) : elem.offsetLeft; }, pageY: function(elem){ //获取目标elem的Y坐标 return elem.offsetParent ? elem.offsetTop + this.pageX(elem.offsetParent) : elem.offsetTop; }, make: function(id){ var elem = this.$(id); var oldXY = null; var newXY = null; var x = 0; //记录初始化是目标elem的x坐标 var y = 0; //记录初始化是目标elem的y坐标 var t = this; elem.onmouseover = function(e){ this.style.cursor = "default"; } elem.onmousedown = function(e){ e = e || window.event; this.style.position = "absolute"; this.style.cursor = "move"; x = t.pageX(this); y = t.pageY(this); var that = this; oldXY = { x: e.clientX, y: e.clientY }; //获取鼠标在按下的时候的坐标 document.onmousemove = function(e){ e = e || window.event; newXY = { x: e.clientX, y: e.clientY }; //获取鼠标在移动过程中的坐标 that.style.left = (newXY.x - oldXY.x + x) + "px"; that.style.top = (newXY.y - oldXY.y + y) + "px"; that.style.zIndex = "100"; } } elem.onmouseup = function(e){ this.style.cursor = "default"; this.style.zIndex = "0"; document.onmousemove = function(e){ //在放开鼠标的时候覆盖掉mousemove事件函数 return; } } } }
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部