【推荐】一个JS面向对象拖拽类
投稿 发布:2020-10-06 232

一个面向对象的JS拖拽库,可设置水平锁定、垂直锁定、锁定位置、锁定范围等,设定这些范围后,只能在设定的模式下拖动,我觉得这是个挺不错的拖拽实例。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>【推荐】一个JS面向对象拖拽类_网页代码站(www.webdm.cn)</title> <style type="text/css"> div,h2,p{margin:0;padding:0;} body{font:14px/1.5 arial;} #box{width:100px;height:100px;background:#fef4eb;padding:5px;margin:50px;border:1px solid #f60;} #box .title{height:25px;background:#f60;} #tool{margin-bottom:10px;} </style> <script type="text/javascript"> function Drag() { //初始化 this.initialize.apply(this, arguments) } Drag.prototype = { //初始化 initialize : function (drag, options) { this.drag = this.$(drag); this._x = this._y = 0; this._moveDrag = this.bind(this, this.moveDrag); this._stopDrag = this.bind(this, this.stopDrag); this.setOptions(options); this.handle = this.$(this.options.handle); this.maxContainer = this.$(this.options.maxContainer); this.maxTop = Math.max(this.maxContainer.clientHeight, this.maxContainer.scrollHeight) - this.drag.offsetHeight; this.maxLeft = Math.max(this.maxContainer.clientWidth, this.maxContainer.scrollWidth) - this.drag.offsetWidth; this.limit = this.options.limit; this.lockX = this.options.lockX; this.lockY = this.options.lockY; this.lock = this.options.lock; this.onStart = this.options.onStart; this.onMove = this.options.onMove; this.onStop = this.options.onStop; this.handle.style.cursor = "move"; this.changeLayout(); this.addHandler(this.handle, "mousedown", this.bind(this, this.startDrag)) }, changeLayout : function () { this.drag.style.top = this.drag.offsetTop + "px"; this.drag.style.left = this.drag.offsetLeft + "px"; this.drag.style.position = "absolute"; this.drag.style.margin = "0" }, startDrag : function (event) { var event = event || window.event; this._x = event.clientX - this.drag.offsetLeft; this._y = event.clientY - this.drag.offsetTop; this.addHandler(document, "mousemove", this._moveDrag); this.addHandler(document, "mouseup", this._stopDrag); event.preventDefault && event.preventDefault(); this.handle.setCapture && this.handle.setCapture(); this.onStart() }, moveDrag : function (event) { var event = event || window.event; var iTop = event.clientY - this._y; var iLeft = event.clientX - this._x; if (this.lock) return; this.limit && (iTop < 0 && (iTop = 0), iLeft < 0 && (iLeft = 0), iTop > this.maxTop && (iTop = this.maxTop), iLeft > this.maxLeft && (iLeft = this.maxLeft)); this.lockY || (this.drag.style.top = iTop + "px"); this.lockX || (this.drag.style.left = iLeft + "px"); event.preventDefault && event.preventDefault(); this.onMove() }, stopDrag : function () { this.removeHandler(document, "mousemove", this._moveDrag); this.removeHandler(document, "mouseup", this._stopDrag); this.handle.releaseCapture && this.handle.releaseCapture(); this.onStop() }, //参数设置 setOptions : function (options) { this.options = { handle: this.drag, //事件对象 limit: true, //锁定范围 lock: false, //锁定位置 lockX: false, //锁定水平位置 lockY: false, //锁定垂直位置 maxContainer: document.documentElement || document.body, //指定限制容器 onStart: function () {}, //开始时回调函数 onMove: function () {}, //拖拽时回调函数 onStop: function () {} //停止时回调函数 }; for (var p in options) this.options[p] = options[p] }, //获取id $ : function (id) { return typeof id === "string" ? document.getElementById(id) : id }, //添加绑定事件 addHandler : function (oElement, sEventType, fnHandler) { return oElement.addEventListener ? oElement.addEventListener(sEventType, fnHandler, false) : oElement.attachEvent("on" + sEventType, fnHandler) }, //删除绑定事件 removeHandler : function (oElement, sEventType, fnHandler) { return oElement.removeEventListener ? oElement.removeEventListener(sEventType, fnHandler, false) : oElement.detachEvent("on" + sEventType, fnHandler) }, //绑定事件到对象 bind : function (object, fnHandler) { return function () { return fnHandler.apply(object, arguments) } } }; //应用 window.onload = function () { var oBox = document.getElementById("box"); var oTitle = oBox.getElementsByTagName("h2")[0]; var oSpan = document.getElementsByTagName("span")[0]; var oDrag = new Drag(oBox, {handle:oTitle, limit:false}); var aInput = document.getElementsByTagName("input"); //锁定范围接口 aInput[0].onclick = function () { oDrag.limit = !oDrag.limit; this.value = oDrag.limit ? "取消锁定范围" : "锁定范围" }; //水平锁定接口 aInput[1].onclick = function () { oDrag.lockX = !oDrag.lockX; this.value = oDrag.lockX ? "取消水平锁定" : "水平锁定" }; //垂直锁定接口 aInput[2].onclick = function () { oDrag.lockY = !oDrag.lockY; this.value = oDrag.lockY ? "取消垂直锁定" : "垂直锁定" }; //锁定位置接口 aInput[3].onclick = function () { oDrag.lock = !oDrag.lock; this.value = oDrag.lock ? "取消锁定位置" : "锁定位置" }; //开始拖拽时方法 oDrag.onStart = function () { oSpan.innerHTML = "开始拖拽" }; //开始拖拽时方法 oDrag.onMove = function () { oSpan.innerHTML = "left:" + this.drag.offsetLeft + ", top:" + this.drag.offsetTop }; //开始拖拽时方法 oDrag.onStop = function () { oSpan.innerHTML = "结束拖拽" }; }; </script> </head> <body> <div id="tool"> <input type="button" value="锁定范围" /> <input type="button" value="水平锁定" /> <input type="button" value="垂直锁定" /> <input type="button" value="锁定位置" /> </div> <p>拖放状态:<span>未开始</span></p> <div id="box"> <h2 class="title"></h2> </div> <br> <p><a href="http://www.webdm.cn">网页代码站</a> - 最专业的网页代码下载网站 - 致力为中国站长提供有质量的网页代码!</p> </body> </html>
标签:JS
版权说明:如有标注说明此文章是本站 小小软件库 原创,转载请注明出处和附带本文链接;
免责声明:
本站提供的资源,都来自网络,版权争议与本站无关,所有内容及软件的文章仅限用于学习和研究目的。不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负,我们不保证内容的长久可用性,通过使用本站内容随之而来的风险与本站无关,您必须在下载后的24个小时之内,从您的电脑/手机中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务.
- 上一篇:EMLOG特定模板采集插件
- 下一篇:JS+CSS实现的红色横向二级菜单
相关推荐
- 11-19简约二次元随机背景的自适应外链跳转代码
- 11-08网站底部自适应漂浮代码「网站代码」
- 10-06div+css实现的圆角边框效果
- 10-06CSS+JS控制遮罩效果的TAB及焦点图片切换(荐)
- 10-06教您用CSS的鼠标手势实现任意标签鼠标划过变成小手
- 10-06JavaScript图片放大技术(放大镜)示例代码
- 10-06完全利用CSS实现图片切换特效
- 10-06常用JS图片滚动(无缝、平滑、上下左右滚动)代码大全
- 10-06页面闪电效果
- 10-06JS图片切换特效
取消回复欢迎 你 发表评论:
- 排行榜
- 推荐资讯
-
- 10-13ZFB生活缴费撸能量
- 10-11最新活动公众号领取红包教程都可以可以领取红包
- 10-14新网16元撸cn域名+网站+邮箱
- 10-06掌上wegame 免费抽Q币 非必中 亲测1Q币
- 10-06steam喜+1 游戏开发引擎
- 10-06同程旅行领取8元火车票+休息厅
- 10-06关注中国广州发布公众号 抽随机现金红包
- 10-06LOL欢度中秋 登录游戏领取魄罗图标
- 10-09猫眼领取25减5元电影票券活动
- 10-06免费领7天keep健身运动vip
- 标签列表
- 站点信息
-
- 文章总数:9220
- 页面总数:3
- 分类总数:9
- 标签总数:341
- 评论总数:114
- 浏览总数:285786