JavaScript实现简单的拖拽效果
程序员文章站
2022-06-23 13:06:46
本文实例为大家分享了javascript实现简单的拖拽效果的具体代码,供大家参考,具体内容如下1.先搭架子:* { margin: 0; padding:...
本文实例为大家分享了javascript实现简单的拖拽效果的具体代码,供大家参考,具体内容如下
1.先搭架子:
* { margin: 0; padding: 0; } p { background: skyblue; text-align: center; } html, body { width: 100%; height: 100%; } .mask { width: 100%; height: 100%; position: fixed; left: 0; top: 0; background: rgba(0, 0, 0, .5); display: none; } .login { width: 400px; height: 300px; background: purple; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none; cursor: move; } .login>span { display: inline-block; width: 50px; height: 50px; background: red; position: absolute; top: 0; right: 0; }
<p>我是p标签</p> <a href="http://www.baidu.com" >官网</a> <div class="mask"></div> <div class="login"> <span></span> </div>
2.逻辑部分
//1.拿到需要操作的元素 const op = document.queryselector("p"); const omask = document.queryselector(".mask"); const ologin = document.queryselector(".login"); const oclose = ologin.queryselector(".login>span"); // console.log(oclose); //2.监听点击事件 op.onclick = function() { omask.style.display = "block"; ologin.style.display = "block"; }; oclose.onclick = function() { omask.style.display = "none"; ologin.style.display = "none"; }; //3.监听登录框的按下和移动事件 ologin.onmousedown = function(e) { e = e || e.window; //1.计算固定不变的距离 const x = e.pagex - ologin.offsetleft; const y = e.pagey - ologin.offsettop; // console.log(x); //2.监听移动事件 ologin.onmousemove = function(e) { e = e || e.window; //3.计算移动之后的偏移位 let offsetx = e.pagex - x; let offsety = e.pagey - y; //4.重新设置登录框的位置 ologin.style.left = offsetx + 'px'; ologin.style.top = offsety + 'px'; }; }; ologin.onmouseup = function() { ologin.onmousemove = null; };
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。