<!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>
div拖拽改變大小的demo
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)衣式,“玉大人寸士,你說(shuō)我怎么就攤上這事〔晡裕” “怎么了弱卡?”我有些...
- 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)住册。 經(jīng)常有香客問(wèn)我婶博,道長(zhǎng),這世上最難降的妖魔是什么荧飞? 我笑而不...
- 正文 為了忘掉前任凡人,我火速辦了婚禮,結(jié)果婚禮上叹阔,老公的妹妹穿的比我還像新娘挠轴。我一直安慰自己,他們只是感情好耳幢,可當(dāng)我...
- 文/花漫 我一把揭開(kāi)白布忠荞。 她就那樣靜靜地躺著,像睡著了一般帅掘。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上堂油,一...
- 那天修档,我揣著相機(jī)與錄音,去河邊找鬼府框。 笑死吱窝,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播院峡,決...
- 文/蒼蘭香墨 我猛地睜開(kāi)眼兴使,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了照激?” 一聲冷哼從身側(cè)響起发魄,我...
- 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎俩垃,沒(méi)想到半個(gè)月后励幼,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡口柳,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年苹粟,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片跃闹。...
- 正文 年R本政府宣布荣茫,位于F島的核電站想帅,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏啡莉。R本人自食惡果不足惜港准,卻給世界環(huán)境...
- 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望咧欣。 院中可真熱鬧浅缸,春花似錦、人聲如沸魄咕。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)哮兰。三九已至毛萌,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間喝滞,已是汗流浹背阁将。 一陣腳步聲響...
- 正文 我出身青樓缤削,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親吹榴。 傳聞我的和親對(duì)象是個(gè)殘疾皇子亭敢,可洞房花燭夜當(dāng)晚...
推薦閱讀更多精彩內(nèi)容
- 背景設(shè)置(參考前邊rem布局代碼理解) .div{ position:absolute; width:10rem;...
- layout: post title: '如何實(shí)現(xiàn)一個(gè)可拖拽的圓并且可以改變大小' subtitle: '轉(zhuǎn)載請(qǐng)注...
- 效果圖如下 原理: 同拖拽 必須第一步先確定好方向 然后在改變 具體見(jiàn)代碼
- (一) 微信群里看故鄉(xiāng), 風(fēng)蕭蕭民宿,雪茫茫娇妓。 親朋好友,歡欣雀躍活鹰, 摩拳擦掌哈恰。 有人堆雪人, 有人打雪仗志群。 有人攜兒...