您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關jquery如何拖動改變div大小,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
具體內容如下
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery 版“元素拖拽改變大小”原型 </title> <script type="text/javascript" src="../js/jquery-1.7.1.js"></script> <script type="text/javascript"> /* * jQuery.Resize by wuxinxi007 * Date: 2011-5-14 * blog : http://wuxinxi007.cnblogs.com/ */ $(function(){ //綁定需要拖拽改變大小的元素對象 bindResize(document.getElementById('test')); }); function bindResize(el){ //初始化參數 var els = el.style, //鼠標的 X 和 Y 軸坐標 x = y = 0; //邪惡的食指 $(el).mousedown(function(e){ //按下元素后,計算當前鼠標與對象計算后的坐標 x = e.clientX - el.offsetWidth, y = e.clientY - el.offsetHeight; //在支持 setCapture 做些東東 el.setCapture ? ( //捕捉焦點 el.setCapture(), //設置事件 el.onmousemove = function(ev){ mouseMove(ev || event) }, el.onmouseup = mouseUp ) : ( //綁定事件 $(document).bind("mousemove",mouseMove).bind("mouseup",mouseUp) ) //防止默認事件發生 e.preventDefault() }); //移動事件 function mouseMove(e){ //宇宙超級無敵運算中... els.width = e.clientX - x + 'px', els.height = e.clientY - y + 'px' } //停止事件 function mouseUp(){ //在支持 releaseCapture 做些東東 el.releaseCapture ? ( //釋放焦點 el.releaseCapture(), //移除事件 el.onmousemove = el.onmouseup = null ) : ( //卸載事件 $(document).unbind("mousemove", mouseMove).unbind("mouseup", mouseUp) ) } } </script> <style type="text/css"> #test{ position:absolute; top:0;left:0; width:200px; height:100px; background:#f1f1f1; text-align:center; line-height:100px; border:1px solid #CCC; cursor:move; } </style> </head> <body> <div id="test">dgdg</div> </body> </html>
關于“jquery如何拖動改變div大小”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。