您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“js如何實現(xiàn)拖拽功能”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學習一下“js如何實現(xiàn)拖拽功能”這篇文章吧。
效果圖:(紅色方塊可任意拖動)
代碼如下:
<meta charset="UTF-8"> <meta name="Generator" content="EditPlus®"> <meta name="Author" content=""> <meta name="Keywords" content=""> <meta name="Description" content=""> <title>Document</title> <style type="text/css"> *{ margin:0; padding:0; } body{ background:url("img/2345_image_file_copy_1.jpg"); } #d1{ width:100px; height:100px; background:red; margin-left:300px; } </style> </head> <body> <div id="d1"></div> </body> <script> window.onload=function(){ var d1=document.getElementById("d1"); d1.onmousedown=function(e){ var mouseX=e.clientX; var mouseY=e.clientY;//計算xy var pianyiX=mouseX-d1.offsetLeft; var pianyiY=mouseY-d1.offsetTop; document.onmousemove=function(e){ var newX=e.clientX-pianyiX; var newY=e.clientY-pianyiY; d1.style.marginLeft=newX+"px"; d1.style.marginTop=newY+"px"; } }; document.onmouseup = function(e){ document.onmousemove = null ; }; } /* 結(jié)果,上面的onmousemove要寫在document上,我寫在div上導致錯誤 */ </script> </html>
以上是“js如何實現(xiàn)拖拽功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。