JavaScript滑鼠拖動調整div大小
本文分享一段非常實用的程式碼例項,實現用滑鼠拖動調整元素尺寸的功能。
還附加其他的功能,如拖動標題可以挪動元素的位置,並且返回會被控制在瀏覽器的有效視窗之內。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> *{ margin:0; padding:0; } #zhezhao{ width:100%; height:100%; background:#f00; filter:alpha(opacity:0); opacity:0; z-index:9999; position:absolute; top:0; left:0; display:none; } #div2{ width:200px; height:200px; position:relative; background:#EEEEEE; border:1px solid #f00; } #div1{ width:15px; height:15px; background:#99CC00; position:absolute; right:0px; bottom:0px; cursor:nw-resize; overflow:hidden; font-size:12px; text-align:center; line-height:15px; color:#FFFFFF; float:right; z-index:3; } #right{ width:15px; height:100%; background:#f00; float:right; position:absolute; right:0; top:0; cursor:e-resize; overflow:hidden; filter:alpha(opacity:0); opacity:0; z-index:1; } #bottom{ width:100%; height:15px; background:#f00; position:absolute; left:0; bottom:0; cursor:n-resize; overflow:hidden; filter:alpha(opacity:0); opacity:0; z-index:1; } #div2 p{ padding:10px; line-height:24px; font-size:13px; text-indent:24px; color:#996600; } #div2 h2{ width:100%; height:25px; line-height:25px; font-size:14px; background:#CC9900; color:#FFFFFF; text-indent:15px; cursor:move; overflow:hidden; } </style> <script type="text/javascript"> window.onload=function(){ var oDiv=document.getElementById("div1"); var oDiv2=document.getElementById("div2"); var zhezhao=document.getElementById("zhezhao"); var h2=oDiv2.getElementsByTagName("h2")[0]; var right=document.getElementById("right"); var bottom=document.getElementById("bottom"); var mouseStart={}; var divStart={}; var rightStart={}; var bottomStart={}; //往右拽 right.onmousedown=function(ev){ var oEvent=ev||event; mouseStart.x=oEvent.clientX; mouseStart.y=oEvent.clientY; rightStart.x=right.offsetLeft; if(right.setCapture){ right.onmousemove=doDrag1; right.onmouseup=stopDrag1; right.setCapture(); } else{ document.addEventListener("mousemove",doDrag1,true); document.addEventListener("mouseup",stopDrag1,true); } }; function doDrag1(ev){ var oEvent=ev||event; var l=oEvent.clientX-mouseStart.x+rightStart.x; var w=l+oDiv.offsetWidth; if(w<oDiv.offsetWidth){ w=oDiv.offsetWidth; } else if(w>document.documentElement.clientWidth-oDiv2.offsetLeft){ w=document.documentElement.clientWidth-oDiv2.offsetLeft-2; } oDiv2.style.width=w+"px"; }; function stopDrag1(){ if(right.releaseCapture){ right.onmousemove=null; right.onmouseup=null; right.releaseCapture(); } else{ document.removeEventListener("mousemove",doDrag1,true); document.removeEventListener("mouseup",stopDrag1,true); } }; //往下拽 bottom.onmousedown=function(ev){ var oEvent=ev||event; mouseStart.x=oEvent.clientX; mouseStart.y=oEvent.clientY; bottomStart.y=bottom.offsetTop; if(bottom.setCapture){ bottom.onmousemove=doDrag2; bottom.onmouseup=stopDrag2; bottom.setCapture(); } else{ document.addEventListener("mousemove",doDrag2,true); document.addEventListener("mouseup",stopDrag2,true); } }; function doDrag2(ev){ var oEvent=ev||event; var t=oEvent.clientY-mouseStart.y+bottomStart.y; var h=t+oDiv.offsetHeight; if(h<oDiv.offsetHeight){ h=oDiv.offsetHeight; } else if(h>document.documentElement.clientHeight-oDiv2.offsetTop){ h=document.documentElement.clientHeight-oDiv2.offsetTop-2; } oDiv2.style.height=h+"px"; }; function stopDrag2(){ if(bottom.releaseCapture){ bottom.onmousemove=null; bottom.onmouseup=null; bottom.releaseCapture(); } else{ document.removeEventListener("mousemove",doDrag2,true); document.removeEventListener("mouseup",stopDrag2,true); } }; //往左右同時拽 oDiv.onmousedown=function(ev){ var oEvent=ev||event; mouseStart.x=oEvent.clientX; mouseStart.y=oEvent.clientY; divStart.x=oDiv.offsetLeft; divStart.y=oDiv.offsetTop; if(oDiv.setCapture){ oDiv.onmousemove=doDrag; oDiv.onmouseup=stopDrag; oDiv.setCapture(); } else{ document.addEventListener("mousemove",doDrag,true); document.addEventListener("mouseup",stopDrag,true); } zhezhao.style.display='block'; }; function doDrag(ev){ var oEvent=ev||event; var l=oEvent.clientX-mouseStart.x+divStart.x; var t=oEvent.clientY-mouseStart.y+divStart.y; var w=l+oDiv.offsetWidth; var h=t+oDiv.offsetHeight; if(w<oDiv.offsetWidth){ w=oDiv.offsetWidth; } else if(w>document.documentElement.clientWidth-oDiv2.offsetLeft){ w=document.documentElement.clientWidth-oDiv2.offsetLeft-2; } if(h<oDiv.offsetHeight){ h=oDiv.offsetHeight; } else if(h>document.documentElement.clientHeight-oDiv2.offsetTop){ h=document.documentElement.clientHeight-oDiv2.offsetTop-2; } oDiv2.style.width=w+"px"; oDiv2.style.height=h+"px"; }; function stopDrag(){ if(oDiv.releaseCapture){ oDiv.onmousemove=null; oDiv.onmouseup=null; oDiv.releaseCapture(); } else{ document.removeEventListener("mousemove",doDrag,true); document.removeEventListener("mouseup",stopDrag,true); } zhezhao.style.display='none'; }; //h2完美拖拽 h2.onmousedown=function(ev){ var oEvent=ev||event; mouseStart.x=oEvent.clientX; mouseStart.y=oEvent.clientY; divStart.x=oDiv2.offsetLeft; divStart.y=oDiv2.offsetTop; if(h2.setCapture){ h2.onmousemove=doDrag3; h2.onmouseup=stopDrag3; h2.setCapture(); } else{ document.addEventListener("mousemove",doDrag3,true); document.addEventListener("mouseup",stopDrag3,true); } zhezhao.style.display='block'; }; function doDrag3(ev){ var oEvent=ev||event; var l=oEvent.clientX-mouseStart.x+divStart.x; var t=oEvent.clientY-mouseStart.y+divStart.y; if(l<0){ l=0; } else if(l>document.documentElement.clientWidth-oDiv2.offsetWidth){ l=document.documentElement.clientWidth-oDiv2.offsetWidth; } if(t<0){ t=0; } else if(t>document.documentElement.clientHeight-oDiv2.offsetHeight){ t=document.documentElement.clientHeight-oDiv2.offsetHeight; } oDiv2.style.left=l+"px"; oDiv2.style.top=t+"px"; }; function stopDrag3(){ if(h2.releaseCapture){ h2.onmousemove=null; h2.onmouseup=null; h2.releaseCapture(); } else{ document.removeEventListener("mousemove",doDrag3,true); document.removeEventListener("mouseup",stopDrag3,true); } zhezhao.style.display='none'; } }; </script> </head> <body> <div id="div2"> <div style="width:100%;height:100%;overflow:hidden;"> <h2>螞蟻部落</h2> <p>螞蟻部落歡迎您,只有努力奮鬥才會有美好的未來</p> <div id="right"></div> <div id="div1">拖</div> <div id="bottom"></div> </div> </div> <div id="zhezhao"></div> </body> </html>
相關文章
- jQuery滑鼠拖動調整數字大小jQuery
- javascript div元素滑鼠拖動效果詳解JavaScript
- JavaScript 拖動調整元素尺寸JavaScript
- JavaScript拖動調整元素的尺寸JavaScript
- JavaScript拖動div元素詳解JavaScript
- Winform中實現拖動 Windows 邊緣來調整其大小ORMWindows
- Jquery實現滑鼠拖動改變div高度jQuery
- jQuery實現的拖動調整表格td單元格的大小jQuery
- JavaScript拖動滑鼠繪製矩形方框JavaScript
- js拖動調整元素寬度JS
- JavaScript方向鍵調整div元素的位置JavaScript
- javacript 拖動 divJava
- 滑鼠拖動實現將div放入方格例項程式碼
- jQuery拖動調整左右兩列寬度jQuery
- Win10滑鼠移動速度太快如何調整_win10調整滑鼠移動速度的步驟Win10
- 從零開始,開發一個 Web Office 套件(16):拖動控制點,調整編輯器大小Web套件
- js通過拖動調整元素位置程式碼例項JS
- 如何調整Pycharm字型大小PyCharm
- sga_target大小調整
- JS實現拖動div層移動JS
- JavaScript隨滑鼠晃動的div塊程式碼例項JavaScript
- kindeditor 上傳圖片 自動調整尺寸大小
- 根據viewport的size自動調整fontsize大小View
- 批量調整視訊尺寸大小的方法,一鍵自動批量調整視訊
- jquery div層拖動效果封裝jQuery封裝
- canvas 按住滑鼠拖動 繪製文字Canvas
- Excel如何調整圖片大小Excel
- launchpad圖示大小怎麼調整?mac圖示調整大小方法介紹Mac
- Linux系統調整swap大小Linux
- 如何調整Docker裡面的Image 大小?Docker
- wps批量調整圖片大小
- ORACLE RAC+DG調整redo大小Oracle
- Oracle調整redo log日誌大小Oracle
- 手動上傳圖片,怎麼調整大小和居中
- 通過拖動實現調整元素之間位置程式碼例項
- 調整視窗大小也能夠實現div水平垂直居中程式碼例項
- div拖動範圍限定在指定元素內
- 可以拖動的div塊程式碼例項