如何用JS实现鼠标拖曳且能还原拖动轨迹的效果
Admin 2022-06-14 群英技术资讯 511 次浏览
js实现鼠标的拖曳效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
效果如下:
下面是代码:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>鼠标拖曳效果</title> <style> body{ background:black; } #box{ position:absolute; background: rgb(148, 143, 143); width: 400px; height: 200px; box-sizing: border-box; border: white 2px solid; } .topTitle{ cursor: move; border-bottom: white 2px solid; background: #cccccc; text-align: right; color: white; height: 20px; line-height: 20px; } .content >div{ background: rgb(148, 143, 143); height: 50px; line-height: 50px; color: white; text-align: left; } </style> </head> <body> <div id="box"> <div class="topTitle"><a href="#" >点击回放拖动轨迹</a></div> <div class="content"> <div>Drag:</div> <div>offsetTop:</div> <div>offsetLeft</div> </div> </div> </body> <script> var oBox=document.getElementById("box"); var oTopTitle=document.getElementsByClassName("topTitle")[0]; var aDiv= document.querySelectorAll(".content >div"); var offWidth=document.documentElement.clientWidth; var clHight=document.documentElement.clientHeight; var i,t; var state="false"; var oText=document.querySelector(".topTitle a"); oTopTitle.onmousedown=function(even){ var OffsetE=even||window.event; var flag=true; //设立边界: document.onmousemove=function(even){ state="true"; var ClientE=even||window.event; l=ClientE.clientX-OffsetE.offsetX; t=ClientE.clientY-OffsetE.offsetY; recorde(l,t,flag); if(l<0){ l=0; } if(t<0){ t=0; } if(l>offWidth-oBox.offsetWidth){ l=offWidth-oBox.offsetWidth; } if(t>clHight-oBox.offsetHeight){ t=clHight-oBox.offsetHeight; } oBox.style.left=l+"px"; oBox.style.top=t+"px"; } document.onmouseup=function(){ console.log(1); state="false"; document.onmousemove=null; document.onmouseup=null; } OffsetE.preventDefault(); flag=false; } oText.onclick=function(){ var reback=recorde(l,t); var index=reback.strX.length; setInterval(function(){ if(index<0){ clearInterval(); return; } oBox.style.left=reback.strX[index--] +"px"; oBox.style.top=reback.strY[index--]+"px"; },30); strX=[]; strY=[]; } var strX=[]; var strY=[]; function recorde(offsetTop,offsetLeft,flag){ var text1=aDiv[1].innerText; aDiv[0].innerHTML="Drag:"+"<span style='color:yellow'>"+state+"</span>"; aDiv[1].innerHTML="offsetTop:"+"<span style='color:yellow'>"+offsetTop+"</span>"; aDiv[2].innerHTML="offsetLeft:"+"<span style='color:yellow'>"+offsetLeft+"</span>"; strX.push(offsetTop) ; strY.push(offsetLeft); // console.log(strX); // console.log(strY); return { strX, strY } } </script> </html>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
目录vue打包去掉所有的console.log输出安装插件添加配置vue npm run build 打包去掉console和警告其实就两行代码就可以了vue打包去掉所有的console.log输出安装插件npm install babel-plugin-transform-remove-console --save-
这篇文章就是主要介绍用原生JavaScript来实现一个简易的音乐播放器,其功能效果包括播放的控制,音乐进度条的控制,歌词的显示和高亮以及播放模式的设置。感谢的朋友就继续往下看吧
这篇文章主要为大家介绍了ahooks解决React闭包问题方法示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于闭包的相关问题,其中包括了闭包是什么、为什么要这么设计以及能怎么用的相关内容,下面一起来看一下,希望对大家有帮助。
Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式。为了帮助大家熟悉和理解vuex,这篇文章就给大家介绍关于vuex的使用步骤,下面一起跟随小编来学习吧。
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008