最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501
当前位置: 首页 - 科技 - 知识百科 - 正文

js实现鼠标拖动功能

来源:懂视网 责编:小OO 时间:2020-11-27 20:22:40
文档

js实现鼠标拖动功能

效果图。代码如下:<;,把鼠标的偏移量付给p document.onmousemove=function(ev){ //计算出鼠标在XY方向上移动的偏移量,把这个偏移量加给p的左边距和上边距,p就会跟着移动 var e=window.event|| ev;p.style.left=e.clientX-oX+";px";p.style.top=e.clientY-oY+";px";} //当鼠标按键抬起,把鼠标的偏移量付给p document.onmousemove=function(ev){ //计算出鼠标在XY方向上移动的偏移量,把这个偏移量加给p的左边距和上边距。
推荐度:
导读效果图。代码如下:<;,把鼠标的偏移量付给p document.onmousemove=function(ev){ //计算出鼠标在XY方向上移动的偏移量,把这个偏移量加给p的左边距和上边距,p就会跟着移动 var e=window.event|| ev;p.style.left=e.clientX-oX+";px";p.style.top=e.clientY-oY+";px";} //当鼠标按键抬起,把鼠标的偏移量付给p document.onmousemove=function(ev){ //计算出鼠标在XY方向上移动的偏移量,把这个偏移量加给p的左边距和上边距。
本文主要介绍了js实现鼠标拖动功能的实例代码。具有很好的参考价值。下面跟着小编一起来看下吧

效果图:

代码如下:

<!DOCTYPE html>
<html>
 <head>
 <meta charset="UTF-8">
 <title></title>
 <style type="text/css">
 #p{
 width: 200px;
 height: 200px;
 background: green;
 position: absolute;
 }
 #p2{
 width: 200px;
 height: 200px;
 background: gold;
 position: absolute;
 top: 200px;
 left: 200px;
 }
 </style>
 </head>
 <body>
 <p id="p">
 </p>
 <p id="p2"></p>
 <script>
 window.onload=function(){
 var p=document.getElementById("p");
 p.onmousedown=function(ev){
 var e=window.event || ev;
 //var Myp=document.getElementById("p");
 //获取到鼠标点击的位置距离p左侧和顶部边框的距离;
 var oX=e.clientX-p.offsetLeft;
 var oY=e.clientY-p.offsetTop;
 //当鼠标移动,把鼠标的偏移量付给p
 document.onmousemove=function(ev){
 //计算出鼠标在XY方向上移动的偏移量,把这个偏移量加给p的左边距和上边距,p就会跟着移动
 var e=window.event|| ev;
 p.style.left=e.clientX-oX+"px";
 p.style.top=e.clientY-oY+"px";
 }
 //当鼠标按键抬起,清除移动事件
 document.onmouseup=function(){
 document.onmousemove=null;
 document.onmouseup=null;
 }
 }
 var p2=document.getElementById("p2");
 p2.onmousedown=function(ev){
 var e=window.event || ev;
 //var Myp=document.getElementById("p");
 //获取到鼠标点击的位置距离p左侧和顶部边框的距离;
 var oX=e.clientX-p2.offsetLeft;
 var oY=e.clientY-p2.offsetTop;
 //当鼠标移动,把鼠标的偏移量付给p
 document.onmousemove=function(ev){
 //计算出鼠标在XY方向上移动的偏移量,把这个偏移量加给p的左边距和上边距,p就会跟着移动
 var e=window.event|| ev;
 p2.style.left=e.clientX-oX+"px";
 p2.style.top=e.clientY-oY+"px";
 }
 //当鼠标按键抬起,清除移动事件
 document.onmouseup=function(){
 document.onmousemove=null;
 document.onmouseup=null;
 }
 }
 }
 </script>
 </body>
</html>

声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文档

js实现鼠标拖动功能

效果图。代码如下:<;,把鼠标的偏移量付给p document.onmousemove=function(ev){ //计算出鼠标在XY方向上移动的偏移量,把这个偏移量加给p的左边距和上边距,p就会跟着移动 var e=window.event|| ev;p.style.left=e.clientX-oX+";px";p.style.top=e.clientY-oY+";px";} //当鼠标按键抬起,把鼠标的偏移量付给p document.onmousemove=function(ev){ //计算出鼠标在XY方向上移动的偏移量,把这个偏移量加给p的左边距和上边距。
推荐度:
标签: 功能 鼠标 js
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top