您好,登錄后才能下訂單哦!
小編這次要給大家分享的是JS如何實(shí)現(xiàn)鼠標(biāo)按下拖拽效果,文章內(nèi)容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>鼠標(biāo)拖動(dòng)</title> <style type="text/css"> body { margin: 0; } div { width: 200px; height: 200px; position: absolute; background-color: pink; } </style> </head> <body> <div onmousedown="downDiv(this)" onmousemove="moveDiv(this)" onmouseup="upDiv(this)"> </div> <script> //定義變量?jī)?chǔ)存div的寬高 var obj_w, obj_h; //定義一個(gè)變量判斷是否執(zhí)行移動(dòng)函數(shù) var mouseDown = false; //鼠標(biāo)按下函數(shù) function downDiv(obj) { //獲取div的寬高 obj_w = obj.offsetWidth; obj_h = obj.offsetHeight; //鼠標(biāo) var e = event || window.event; //e.clientX/Y 是獲取鼠標(biāo)相對(duì)瀏覽器的位置;將div中心自動(dòng)居中到鼠標(biāo) obj.style.left = (e.clientX - obj_w / 2) + "px"; obj.style.top = (e.clientY - obj_h / 2) + "px"; console.log(obj.style.left, obj.style.top) //按下時(shí)為ture,松開時(shí)為false,以判斷是否執(zhí)行執(zhí)行mouveDiv mouseDown = true; } //鼠標(biāo)移動(dòng)函數(shù) function moveDiv(obj) { obj_w = obj.offsetWidth; obj_h = obj.offsetHeight; var e = event || window.event; console.log(e.clientX, e.clientY); console.log(obj_w, obj_h); if (mouseDown) { obj.style.left = (e.clientX - obj_w / 2) + "px"; obj.style.top = (e.clientY - obj_h / 2) + "px"; console.log(obj.style.left, obj.style.top) } } //鼠標(biāo)松開函數(shù) function upDiv(obj) { mouseDown = false; } </script> </body> </html>
看完這篇關(guān)于JS如何實(shí)現(xiàn)鼠標(biāo)按下拖拽效果的文章,如果覺得文章內(nèi)容寫得不錯(cuò)的話,可以把它分享出去給更多人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。