欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jquery拖動(dòng)改變div大小

 更新時(shí)間:2017年07月04日 17:14:11   作者:liucuan  
這篇文章主要為大家詳細(xì)介紹了jquery拖動(dòng)改變div大小的相關(guān)代碼,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了jquery拖動(dòng)改變div大小的具體代碼,供大家參考,具體內(nèi)容如下

<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){ 
    //初始化參數(shù) 
    var els = el.style, 
      //鼠標(biāo)的 X 和 Y 軸坐標(biāo) 
      x = y = 0; 
    //邪惡的食指 
    $(el).mousedown(function(e){ 
      //按下元素后,計(jì)算當(dāng)前鼠標(biāo)與對象計(jì)算后的坐標(biāo) 
      x = e.clientX - el.offsetWidth, 
      y = e.clientY - el.offsetHeight; 
      //在支持 setCapture 做些東東 
      el.setCapture ? ( 
        //捕捉焦點(diǎn) 
        el.setCapture(), 
        //設(shè)置事件 
        el.onmousemove = function(ev){ 
          mouseMove(ev || event) 
        }, 
        el.onmouseup = mouseUp 
      ) : ( 
        //綁定事件 
        $(document).bind("mousemove",mouseMove).bind("mouseup",mouseUp) 
      ) 
      //防止默認(rèn)事件發(fā)生 
      e.preventDefault() 
    }); 
    //移動(dòng)事件 
    function mouseMove(e){ 
      //宇宙超級無敵運(yùn)算中... 
      els.width = e.clientX - x + 'px', 
      els.height = e.clientY - y + 'px' 
    } 
    //停止事件 
    function mouseUp(){ 
      //在支持 releaseCapture 做些東東 
      el.releaseCapture ? ( 
        //釋放焦點(diǎn) 
        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>

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論