DOM事件 --滑鼠拖拽div
阿新 • • 發佈:2018-11-21
實現效果:
分析:
1.當滑鼠在粉色div上按下時,捕獲onmousedown事件,獲取滑鼠的座標clientX,clientY
2.滑鼠在按下後移動,整個div跟隨著移動,獲取滑鼠按下時相對於整個div的座標,即下圖中的disx,dixy
3.滑鼠擡起後,整個div不再隨滑鼠移動,onmouseup事件
4.設定整個div能夠活動的範圍,即瀏覽器視窗大小減去div本身所佔大小
具體程式碼:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <title></title> <style type="text/css"> body{margin:0;padding:0;} #wrap{width:300px;height:200px;border:1px solid #FFFFCC;background-color:#CCFFFF;position:absolute;} #moveHere{cursor: move;width:300px;height: 30px;text-align: center;line-height:30px;background-color:#FFCCCC;} </style> </head> <body> <div id="wrap"> <div id="moveHere"></div> </div> <script type="text/javascript"> var moveHere=document.getElementById("moveHere"); var wrap=document.getElementById("wrap"); var winW=document.documentElement.clientWidth || document.body.clientWidth; var winH=document.documentElement.clientHeight || document.body.clientHeight; maxW=winW-wrap.offsetWidth; maxH=winH-wrap.offsetHeight; window.onload=function(){ wrap.style.left=(maxW/2)+"px"; wrap.style.top=(maxH/2)+"px"; moveHere.onmousedown=mousedown; moveHere.onmouseup=mouseup; } function mousedown(event){ event=event||window.event; var disx = event.clientX-wrap.offsetLeft; var disy = event.clientY-wrap.offsetTop; document.onmousemove = function(event){ event=event||window.event; move(event,disx,disy); } } function move(event,disx,disy){ var x = event.clientX-disx; var y = event.clientY-disy; if(x<0){ x=0; }else if(x>maxW){ x=maxW; } if(y<0){ y=0; }else if(y>maxH){ y=maxH; } wrap.style.left=x+"px"; wrap.style.top=y+"px"; } function mouseup(){ document.onmousemove=null; document.onmouseup=null; } </script> </body> </html>