<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>鼠标拖动改变盒子的大小</title>
<style>
* {
margin: 0;
padding: 0;
}
html,
body {
width: 100%;
height: 100%;
background: #426ab3;
}
.box {
width: 100%;
height: 400px;
background: #9b95c9;
position: absolute;
bottom: 0;
left: 0;
}
.box-line {
width: 100%;
height: 2px;
background-color: red;
cursor: n-resize;
}
</style>
</head>
<body>
<div class="box" id="box">
<div class="box-line" id="box-line"></div>
</div>
<script>
let boxLine = document.getElementById('box-line');
let box = document.getElementById('box');
let minHeight = 400;
let maxHeight = 800;
let height = minHeight;
boxLine.onmousedown = function (event) {
const hanldeMouseUp = () => {
document.removeEventListener('mouseup', hanldeMouseUp);
document.removeEventListener('mousemove', hanldeMouseMove);
};
const hanldeMouseMove = (event) => {
const documentH = document.documentElement.clientHeight;
const nowH = documentH - event.clientY;
if (nowH >= maxHeight) {
height = maxHeight;
} else if (nowH <= minHeight) {
height = minHeight;
} else {
height = nowH;
}
box.style.height = height + 'px';
};
document.addEventListener('mouseup', hanldeMouseUp);
document.addEventListener('mousemove', hanldeMouseMove);
};
</script>
</body>
</html>
鼠标拖动改变盒子的大小
转载请注明出处或者链接地址:https://www.qianduange.cn//article/12329.html
相关文章
-
VUE启动报错:Error: The project seems to require pnpm but it‘s not installed
-
移动端浏览器的扫描二维码实现(vue-qrcode-reader与jsQR方式)
-
stack-overflow与heap-buffer-overflow 等常见执行错误的原因以及改正方法
-
完整的 nuxt3 vue ts 服务端渲染项目搭建教程,克隆就能用,新手必学,建议收藏
-
vue3 typescript vant3零经验开发者可用
-
TS基础知识
-
【与chatGPT讨论TypeScript中重载与c#语言中重载的问题】
-
【TypeScript】TS类型断言-类型的声明和转换(五)
-
Vue Vite Pinia TypeScript Element-Plus从0到1搭建后台管理系统(上)
-
使用Electron将HTML单页面打包为exe
发布的文章
用js把小时分钟秒数转为秒数
2024-06-21 09:06:12
2024年安卓最新sonic :基于 JIT 技术的开源全场景高性能 JSON 库,2024年最新社招面试的问题
2024-06-21 09:06:50
json文件的格式转换
2024-06-21 09:06:48
JSON介绍:json.dump()、json.dumps()、json.load()、json.loads()
2024-06-21 09:06:48
Docker应用之daemon.json(一)
2024-06-21 09:06:47
harmonyos预览功能报错:[webpack-cli] SyntaxError: Unexpected end of JSON input
2024-05-28 09:05:58
探索JSON-Patch:强大的JSON文档操作工具
2024-06-21 09:06:45
CJSON入门(CJSON下载,基本使用)
2024-06-21 09:06:43
Python进阶学习:json.dumps()和json.dump()的区别
2024-06-21 09:06:41
JSON 现代数据交换的利器
2024-06-21 09:06:41
大家推荐的文章