js實(shí)現(xiàn)鼠標(biāo)拖曳效果
js實(shí)現(xiàn)鼠標(biāo)的拖曳效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
效果如下:
下面是代碼:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>鼠標(biāo)拖曳效果</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="#" >點(diǎn)擊回放拖動(dòng)軌跡</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; //設(shè)立邊界: 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>
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
基于JS代碼實(shí)現(xiàn)當(dāng)鼠標(biāo)懸停表格上顯示這一格的全部內(nèi)容
這篇文章主要介紹了基于JS代碼實(shí)現(xiàn)當(dāng)鼠標(biāo)懸停表格上顯示這一格的全部內(nèi)容 的相關(guān)資料,需要的朋友可以參考下2016-06-06微信小程序?qū)崿F(xiàn)翻牌抽獎(jiǎng)動(dòng)畫
這篇文章主要為大家詳細(xì)介紹了微信小程序?qū)崿F(xiàn)翻牌抽獎(jiǎng)動(dòng)畫,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2020-09-09點(diǎn)擊進(jìn)行復(fù)制的JS代碼實(shí)例
這篇文章介紹了點(diǎn)擊進(jìn)行復(fù)制的JS代碼實(shí)例,有需要的朋友可以參考一下2013-08-08layui之?dāng)?shù)據(jù)表格--與后臺交互獲取數(shù)據(jù)的方法
今天小編就為大家分享一篇layui之?dāng)?shù)據(jù)表格--與后臺交互獲取數(shù)據(jù)的方法,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-09-09JavaScript實(shí)現(xiàn)DOM對象選擇器
這篇文章主要為大家詳細(xì)介紹了JavaScript實(shí)現(xiàn)DOM對象選擇器,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-09-09bootstrap 下拉多選框進(jìn)行多選傳值問題代碼分析
項(xiàng)目開發(fā)遇到個(gè)問題,就是引入bootstrap下拉多選框進(jìn)行多選的時(shí)候,用form表單提交到后臺,獲取不到多選的值,只能獲取的選擇的第一個(gè)值,怎么回事呢?下面小編給大家分析下bootstrap 下拉多選框進(jìn)行多選傳值問題,一起看看吧2017-02-02如何使用瀏覽器擴(kuò)展篡改網(wǎng)頁中的JS?文件
這篇文章主要為大家介紹了如何使用瀏覽器擴(kuò)展篡改網(wǎng)頁中的JS文件實(shí)現(xiàn)解析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-05-05