jQuery实现的简单对话框拖动功能示例
程序员文章站
2023-01-23 21:44:04
本文实例讲述了jquery实现的简单对话框拖动功能。分享给大家供大家参考,具体如下:
&...
本文实例讲述了jquery实现的简单对话框拖动功能。分享给大家供大家参考,具体如下:
<!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1"> <title>www.jb51.net jquery 拖动</title> <meta name="description" content=""> <meta name="keywords" content=""> <link href="" rel=" rel="external nofollow" stylesheet"> <style> *{margin: 0;padding: 0;box-sizing: border-box;-moz-user-select:none;} body {font: 12px/16px bold 'microsoft yahei,微软雅黑';} .dragcontainer { width: 382px; height: 395px; position: absolute; top: 50%; left: 50%; border: 1px solid red; margin-left: -191px; margin-top: -197.5px; } .dragcontainer .dragtitle { width: 100%; height: 35px; border-bottom: 1px solid red; text-align: center; line-height: 35px; } .dragcontainer .dragtitle:hover { cursor: move; } .dragcontainer .content { width: 100%; height: 360px; } p.buttongroup { width: 100%; text-align: center; position: absolute; bottom: 0; left: 0; right: 0; padding: 5px; border-top: 1px solid red; } p.buttongroup input { padding: 5px 10px; color: white; } p.buttongroup input:hover { cursor: pointer; cursor: hand; } p.buttongroup input:first-child { margin-left: 25px; background: blue; } p.buttongroup input.btn2 { margin-left: 15px; background: red; } </style> </head> <body> <div class="dragcontainer" id="drag" style="'position:absolute;" > <p class="dragtitle">标题栏</p> <div class="content"></div> <p class="buttongroup"><input type="button" value="确定"><input type="button" value="取消" class="btn2"></p> </div> <script src="http://cdn.bootcss.com/jquery/2.1.0/jquery.js"></script> <script type="text/javascript"> var mydrag={ mousepoint: {x:0,y:0}, //初始化坐标 drag: function(){ var that=this; //保存当前对象即(mydrag),如果不保存,在mousedown()里访问不了mydrag这个对象 var targetid=$(".dragtitle"); targetid.mousedown(function(event){ var e=event; var offsetleft=targetid.offset().left; //当前div的左偏移距离 var offsettop=targetid.offset().top; //当前div的顶部偏移距离 that.mousepoint.x=e.clientx-offsetleft;//计算鼠标点击时离它自己div的横向距离 that.mousepoint.y=e.clienty-offsettop; //计算鼠标点击时离它自己div的纵向距离 $(document).bind('mousemove',move); e.stoppropagation(); }); function move(event){ var e =event; var left=e.clientx-that.mousepoint.x; //移动后,重新计算左偏移和顶部偏移距离 var top=e.clienty-that.mousepoint.y; $("#drag").css({'top':top,'left':left,'margin':0}); $(document).bind('mouseup',end); e.stoppropagation(); }; function end(event){ var e = event; $(document).unbind('mousemove', move); $(document).unbind('mouseup',end); e.stoppropagation(); }; } } mydrag.drag(); </script> </body> </html>
使用在线html/css/javascript代码运行工具 http://tools.jb51.net/code/htmljsrun测试,运行效果如下:
更多关于jquery相关内容感兴趣的读者可查看本站专题:《jquery拖拽特效与技巧总结》、《jquery常用插件及用法总结》、《jquery中ajax用法总结》、《jquery表格(table)操作技巧汇总》、《jquery扩展技巧总结》、《jquery常见经典特效汇总》、《jquery动画与特效用法总结》及《jquery选择器用法总结》
希望本文所述对大家jquery程序设计有所帮助。
上一篇: 垂直电商日渐式微 如何突破巨头与直播带货的双重夹击
下一篇: 初学node.js笔记