实用窗口拖动功能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> <meta http-equiv="content-type" content="text/html;charset=gb2312"> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效,www.wuming.ren"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <title>实用窗口拖拽效果_武鸣人</title> <style type="text/css"> *{padding:0;margin:0;} #wrap{width:400px;margin:50px 0 0 50px;} #test{width:120px;height:120px;background:#080;position:absolute;left:500px;top:50px;z-index:100;} blockquote{background:#ddd;} </style> <script type="text/javascript"> window.onload=function(){ //声明变量 var obj=document.getElementById("test"); var drag=false; var difX=difY=0; //鼠标按下激活拖拽 obj.onmousedown=function(event){ obj.style.cursor="move"; obj.style.opacity=0.8; var event=event||window.event; drag=true; //获取鼠标相对于容器的left和top值 difX=event.clientX-obj.offsetLeft; difY=event.clientY-obj.offsetTop; return false; } //鼠标移动代码 obj.onmousemove=function(event){ if (!drag) return; var event=event||window.event; //获取拖动过程中的对象的left和top值 iL=event.clientX-difX; iT=event.clientY-difY; var maxL=document.documentElement.clientX-obj.offsetWidth; var maxT=document.documentElement.clientY-obj.offsetHeight; //界定移动的范围 iL = iL < 0 ? 0 : iL; iL = iL > maxL ? maxL : iL; iT = iT < 0 ? 0 : iT; iT = iT > maxT ? maxT : iT; //把拖动对象的上和左边距设置为0, obj.style.marginTop=obj.style.marginLeft=0; //设置拖动过程中的对象的left和top值 obj.style.left=iL+"px"; obj.style.top=iT+"px"; return false; } //鼠标松开 document.onmouseup=function(){ drag=false; obj.style.cursor="default"; obj.style.opacity=1; } }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) </script> </head> <body> <a href="https://www.wuming.ren">武鸣人</a>,各种信息资源免费发布,分享励志语录经典短句,减肥健身常识,各种js特效代码。网站很好记住,wuming.ren(武鸣拼音.ren域名后缀)<hr> <!--欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。--> <script type="text/javascript" src="https://www.wuming.ren/ad/tc.js"></script> <script type="text/javascript" src="https://www.wuming.ren/ad/a.js"></script> <div id="wrap"> <h4>按照以下拖拽原理写的拖拽js效果,但是没有做任何的兼容调整(主要是不会)</h4> <blockquote> <pre> 拖拽状态 = 0 鼠标在元素上按下的时候{ 拖拽状态 = 1 记录下鼠标的x和y坐标 记录下元素的x和y坐标 得出鼠标相对容器的x和y坐标 } 鼠标在元素上移动的时候{ 如果拖拽状态是0就什么也不做。 如果拖拽状态是1,那么 元素y = 现在鼠标y - 鼠标相对容器y 元素x = 现在鼠标x - 鼠标相对容器x } 鼠标在任何时候放开的时候{ 拖拽状态 = 0 } </pre> </blockquote> </div> <div id="test">越努力越幸运,越自律越优秀</div> </body> </html>
本文来自武鸣人网站,转载请注明出处