标签:fun log one 坐标 NPU ade BMI alpha relative
<style> .login-header { width: 100%; text-align: right; height: 30px; font-size: 24px; line-height: 30px; margin-left: -100px; } ul, li, ol, dl, dt, dd, div, p, span, h1, h2, h3, h4, h5, h6, a { padding: 0px; margin: 0px; } .login { width: 512px; position: absolute; border: #ebebeb solid 1px; height: 280px; left: 50%; right: 50%; background: #ffffff; box-shadow: 0px 0px 20px #ddd; z-index: 9999; margin-left: -256px; margin-top: 140px; display: none; } .login-title { width: 100%; margin: 10px 0px 0px 0px; text-align: center; line-height: 40px; height: 40px; font-size: 18px; position: relative; cursor: move; -moz-user-select:none;/*火狐*/ -webkit-user-select:none;/*webkit浏览器*/ -ms-user-select:none;/*IE10*/ -khtml-user-select:none;/*早期浏览器*/ user-select:none; } .login-input-content { margin-top: 20px; } .login-button { width: 50%; margin: 30px auto 0px auto; line-height: 40px; font-size: 14px; border: #ebebeb 1px solid; text-align: center; } .login-bg { width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; background: #000000; filter: alpha(opacity=30); -moz-opacity: 0.3; -khtml-opacity: 0.3; opacity: 0.3; display: none; } a { text-decoration: none; color: #000000; } .login-button a { display: block; } .login-input input.list-input { float: left; line-height: 35px; height: 35px; width: 350px; border: #ebebeb 1px solid; text-indent: 5px; } .login-input { overflow: hidden; margin: 0px 0px 20px 0px; } .login-input label { float: left; width: 90px; padding-right: 10px; text-align: right; line-height: 35px; height: 35px; font-size: 14px; } .login-title span { position: absolute; font-size: 12px; right: -20px; top: -30px; background: #ffffff; border: #ebebeb solid 1px; width: 40px; height: 40px; border-radius: 20px; } </style> <script src="common.js"></script> </head> <body> <div class="login-header"><a id="link" href="javascript:void(0);">会员登录</a></div> <div id="login" class="login" > <div id="title" class="login-title">会员登录 <span><a id="closeBtn" href="javascript:void(0);" class="close-login">关闭</a></span> </div> <div class="login-input-content"> <div class="login-input"> <label>账号:</label> <input type="text" placeholder="请输入账号" name="info[username]" id="username" class="list-input"> </div> <div class="login-input"> <label>密码:</label> <input type="password" placeholder="请输入密码" name="info[password]" id="password" class="list-input"> </div> </div> <div id="loginBtn" class="login-button"><a href="javascript:void(0);" id="login-button-submit">登录</a></div> </div> <!-- 遮盖层 --> <div id="bg" class="login-bg" ></div>
<script> // 1、点击超链接显示遮挡层登录框,在页面任何位置都可以关闭登录框 //获取link源事件 var link=document.getElementById(‘link‘); //获取登录框 var login=document.getElementById(‘login‘); var bg=document.getElementById(‘bg‘); var closeBtn=document.getElementById(‘closeBtn‘); //link绑定鼠标点击事件 link.onclick=function (e) { //设置login登录框的显示样式-----元素(样式)属性值:对象名.style.属性名=“属性值” login.style.display=‘block‘; //设置遮挡层背景显示 bg.style.display=‘block‘; console.log(‘出来 了‘) e.stopPropagation(); } //页面任何位置都可以关闭登录框 closeBtn.onclick=function () { login.style.display=‘none‘; console.log("隐藏了") bg.style.display=‘none‘; } //按下鼠标,移动鼠标,移动登录框 var title=document.getElementById(‘title‘); title.onmousedown=function (e) { //鼠标在盒子中的X横坐标=获取此时可视区域的横坐标-此时登录框距离左侧页面的横坐标 var spaceX=e.clientX-login.offsetLeft; //鼠标在盒子中的Y纵坐标=获取此时可视区域的纵坐标-此时登录框距离左侧页面的纵坐标 var spaceY=e.clientY-login.offsetTop; //移动的事件 document.onmousemove=function (e) { //盒子的横坐标X=新的可视区域的横坐标-spaceX ====>新的值----> 给登录框的left属性, var leftX=e.clientX - spaceX+250; //盒子的纵坐标Y=新的可视区域的纵坐标-spaceY ====>新的值----> 设置登录框的left属性, var topY=e.clientY - spaceY-140; login.style.left=leftX +‘px‘; login.style.top=topY +‘px‘; } //事件移出 title.onmouseup=function () { document.onmousemove=null; } } </script>
思路:
1、当鼠标按下时,求出鼠标在盒子中的位置;
鼠标在盒子中的位置 = 鼠标在页面中的位置 - 盒子在页面中的位置
2、当鼠标移动时,保持鼠标在盒子中的位置不变(即盒子跟随鼠标移动)
盒子的坐标 = 鼠标当前在页面中的位置 - 鼠标在盒子中的位置
使用到的属性有:offsetLeft、offsetTop、pageX、pageY
注意:盒子要脱离文档流,即设置 position:absolute
====================问题解决l====================
问题:鼠标弹起了,盒子还黏在鼠标上。
解决:当鼠标弹起时,移除鼠标移动事件。
关闭按钮:当鼠标点击关闭按钮时,隐藏盒子
注意:使用getPage(e)解决pageX和pageY的浏览器兼容性问题
标签:fun log one 坐标 NPU ade BMI alpha relative
原文地址:https://www.cnblogs.com/liout/p/10992440.html