div拖拽改變大小的demo

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
  <style>
    .box {
      border: 1px solid #d6d6d6;
      position: absolute;
    }

    .left-border {
      width: 4px;
      height: 200px;
      background-color: #00c0ff;
      position: absolute;
      cursor: w-resize;
    }

    .top-border {
      width: 200px;
      height: 4px;
      background-color: #00c0ff;
      position: absolute;
      cursor: n-resize;
    }

    .right-border {
      width: 4px;
      height: 200px;
      background-color: #00c0ff;
      position: absolute;
      cursor: e-resize;
    }

    .bottom-border {
      width: 200px;
      height: 4px;
      background-color: #00c0ff;
      position: absolute;
      cursor: s-resize;
    }
  </style>
</head>
<body>

<div class="box" style="width:200px;height:200px;top:200px;left:600px;">
  <div class="left-border" id="left" style="left:0;top:0;"></div>
  <div class="top-border" id="top" style="left:0;top:0;"></div>
  <div class="right-border" id="right" style="right:0;top:0;"></div>
  <div class="bottom-border" id="bottom" style="left:0;bottom:0;"></div>
</div>

</body>

<script>

  let u_left = document.getElementById('left')
  let u_top = document.getElementById('top')
  let u_right = document.getElementById('right')
  let u_bottom = document.getElementById('bottom')

  let currentX = 0, // 用來(lái)記錄鼠標(biāo)按下時(shí)的橫坐標(biāo)
    currentY = 0, // 用來(lái)記錄鼠標(biāo)按下時(shí)的縱坐標(biāo)
    currentDivWidth = 0, // 鼠標(biāo)按下時(shí)div的寬度
    currentDivHeight = 0, // 鼠標(biāo)按下時(shí)div的高度
    currentDivX = 0,  // 鼠標(biāo)按下時(shí)div的橫坐標(biāo)
    currentDivY = 0 // 鼠標(biāo)按下時(shí)div的縱坐標(biāo)
  let currentCanvasDiv = null // 鼠標(biāo)按下時(shí)存放要改變大小的div
  let currentBorder = null // 鼠標(biāo)按下時(shí)存放當(dāng)前拖動(dòng)的邊

  // 綁定鼠標(biāo)按下事件
  u_left.onmousedown = mouseDown
  u_top.onmousedown = mouseDown
  u_right.onmousedown = mouseDown
  u_bottom.onmousedown = mouseDown

  function mouseDown(event) {
    currentX = event.clientX
    currentY = event.clientY
    const path = event.path || (event.composedPath && event.composedPath()) // 獲取當(dāng)前點(diǎn)擊事件冒泡所經(jīng)過(guò)的路徑同時(shí)解決火狐的兼容問(wèn)題
    currentCanvasDiv = path[1]
    currentBorder = path[0].id
    currentDivWidth = parseInt(currentCanvasDiv.style.width)
    currentDivHeight = parseInt(currentCanvasDiv.style.height)
    currentDivX = parseInt(currentCanvasDiv.style.left)
    currentDivY = parseInt(currentCanvasDiv.style.top)
    document.addEventListener("mousemove", eval(currentBorder + 'Move'))
    document.addEventListener("mouseup", mouseUp)
  }

  function mouseUp() {
    document.removeEventListener("mousemove", eval(currentBorder + 'Move'))
    document.removeEventListener("mouseup", mouseUp)
  }

  // 拖動(dòng)左側(cè)邊
  function leftMove(event) {
    let _X = event.clientX
    let _width = currentDivWidth + currentX - _X // 拖動(dòng)后div的寬度
    if (_width <= 200) { // 設(shè)置可以拖動(dòng)的最小寬度
      u_bottom.style.width = u_top.style.width = currentCanvasDiv.style.width = 200 + 'px'
      currentCanvasDiv.style.left = currentDivWidth + currentDivX - 200 + 'px' // 使左側(cè)邊向左移動(dòng),否則改變寬度時(shí)div會(huì)默認(rèn)向右增寬
    } else {
      u_bottom.style.width = u_top.style.width = currentCanvasDiv.style.width = _width + 'px'
      currentCanvasDiv.style.left = currentDivX + _X - currentX + 'px'
    }
  }

  function rightMove(event) {
    let _X = event.clientX
    let _width = currentDivWidth + _X - currentX
    if (_width <= 200) {
      u_bottom.style.width = u_top.style.width = currentCanvasDiv.style.width = 200 + 'px'
    } else {
      u_bottom.style.width = u_top.style.width = currentCanvasDiv.style.width = _width + 'px'
    }
  }

  function bottomMove(event) {
    let _Y = event.clientY
    let _height = currentDivHeight + _Y - currentY
    if (_height <= 200) {
      u_left.style.height = u_right.style.height = currentCanvasDiv.style.height = 200 + 'px'
    } else {
      u_left.style.height = u_right.style.height = currentCanvasDiv.style.height = _height + 'px'
    }
  }

  function topMove(event) {
    let _Y = event.clientY
    let _height = currentDivHeight + currentY - _Y
    if (_height <= 200) {
      u_left.style.height = u_right.style.height = currentCanvasDiv.style.height = 200 + 'px'
      currentCanvasDiv.style.top = currentDivHeight + currentDivY - 200 + 'px'
    } else {
      u_left.style.height = u_right.style.height = currentCanvasDiv.style.height = _height + 'px'
      currentCanvasDiv.style.top = currentDivY + _Y - currentY + 'px'
    }
  }

</script>

</html>
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子廊宪,更是在濱河造成了極大的恐慌,老刑警劉巖赫悄,帶你破解...
    沈念sama閱讀 212,718評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件撼唾,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡音婶,警方通過(guò)查閱死者的電腦和手機(jī)慨畸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)衣式,“玉大人寸士,你說(shuō)我怎么就攤上這事〔晡裕” “怎么了弱卡?”我有些...
    開(kāi)封第一講書(shū)人閱讀 158,207評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)住册。 經(jīng)常有香客問(wèn)我婶博,道長(zhǎng),這世上最難降的妖魔是什么荧飞? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,755評(píng)論 1 284
  • 正文 為了忘掉前任凡人,我火速辦了婚禮,結(jié)果婚禮上叹阔,老公的妹妹穿的比我還像新娘挠轴。我一直安慰自己,他們只是感情好耳幢,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,862評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布忠荞。 她就那樣靜靜地躺著,像睡著了一般帅掘。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上堂油,一...
    開(kāi)封第一講書(shū)人閱讀 50,050評(píng)論 1 291
  • 那天修档,我揣著相機(jī)與錄音,去河邊找鬼府框。 笑死吱窝,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播院峡,決...
    沈念sama閱讀 39,136評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼兴使,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了照激?” 一聲冷哼從身側(cè)響起发魄,我...
    開(kāi)封第一講書(shū)人閱讀 37,882評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎俩垃,沒(méi)想到半個(gè)月后励幼,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,330評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡口柳,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,651評(píng)論 2 327
  • 正文 我和宋清朗相戀三年苹粟,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片跃闹。...
    茶點(diǎn)故事閱讀 38,789評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡嵌削,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出望艺,到底是詐尸還是另有隱情苛秕,我是刑警寧澤,帶...
    沈念sama閱讀 34,477評(píng)論 4 333
  • 正文 年R本政府宣布荣茫,位于F島的核電站想帅,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏啡莉。R本人自食惡果不足惜港准,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,135評(píng)論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望咧欣。 院中可真熱鬧浅缸,春花似錦、人聲如沸魄咕。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,864評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)哮兰。三九已至毛萌,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間喝滞,已是汗流浹背阁将。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,099評(píng)論 1 267
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留右遭,地道東北人做盅。 一個(gè)月前我還...
    沈念sama閱讀 46,598評(píng)論 2 362
  • 正文 我出身青樓缤削,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親吹榴。 傳聞我的和親對(duì)象是個(gè)殘疾皇子亭敢,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,697評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容