JavaScript实现简单的拖拽效果
更新时间:2021年11月07日 16:02:24 作者:小白小白从不日白
这篇文章主要为大家详细介绍了JavaScript实现简单的拖拽效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了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; };
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
Base64(二进制)图片编码解析及在各种浏览器的兼容性处理
这篇文章主要介绍了Base64(二进制)图片编码解析及在各种浏览器的兼容性处理,需要的朋友可以参考下2017-02-02typescript中 declare global 关键字用法示例小结
在TypeScript中,declare global 用于在模块内部扩展全局作用域,本文重点介绍typescript中 declare global 关键字用法示例小结,感兴趣的朋友跟随小编一起看看吧2024-04-04兼容多浏览器的iframe自适应高度(ie8 、谷歌浏览器4.0和 firefox3.5.3)
iframe在ie8 、谷歌浏览器4.0和 firefox3.5.3均成功自适应高度.2009-11-11
最新评论