javascript实现鼠标拖动改变层大小的方法


Posted in Javascript onApril 30, 2015

本文实例讲述了javascript实现鼠标拖动改变层大小的方法。分享给大家供大家参考。具体实现方法如下:

<html>
<head>
<title>拖动改变层的大小</title>
<meta content="text/html; charset=gb2312" http-equiv="Content-Type">
<style> {
box-sizing: border-box; moz-box-sizing: border-box
}
#testDiv { background-color: buttonface; background-repeat: repeat; 
background-attachment: scroll; color: #3969A5; height: 300px; 
left: 30px; overflow: hidden; width: 500; z-index: 2; 
border: 2px outset white; margin: 0px; padding: 2px; 
background-position: 0% 50% }
body { font-family: Verdana; font-size: 9pt }
#innerNice { background-color: white; background-repeat: repeat;
background-attachment: 
scroll; color: #3969A5; height: 100%; overflow: auto; 
width: 100%; border: 2px inset white; padding: 8px; 
background-position: 0% 50% }
</style>
<SCRIPT language=javascript>
var theobject = null; 
function resizeObject() {
this.el = null; //pointer to the object
this.dir = ""; //type of current resize (n,s,e,w,ne,nw,se,sw)
this.grabx = null; //Some useful values
this.graby = null;
this.width = null;
this.height = null;
this.left = null;
this.top = null;
}
function getDirection(el) {
var xPos, yPos, offset, dir;
dir = "";
xPos = window.event.offsetX;
yPos = window.event.offsetY;
offset = 8; //The distance from the edge in pixels
if (yPos<offset) dir += "n";
else if (yPos > el.offsetHeight-offset) dir += "s";
if (xPos<offset) dir += "w";
else if (xPos > el.offsetWidth-offset) dir += "e";
return dir;
}
function doDown() {
var el = getReal(event.srcElement, "className", "resizeMe");
if (el == null) {
theobject = null;
return;
} 
dir = getDirection(el);
if (dir == "") return;
theobject = new resizeObject();
theobject.el = el;
theobject.dir = dir;
theobject.grabx = window.event.clientX;
theobject.graby = window.event.clientY;
theobject.width = el.offsetWidth;
theobject.height = el.offsetHeight;
theobject.left = el.offsetLeft;
theobject.top = el.offsetTop;
window.event.returnValue = false;
window.event.cancelBubble = true;
}
function doUp() {
if (theobject != null) {
theobject = null;
}
}
function doMove() {
var el, xPos, yPos, str, xMin, yMin;
xMin = 8; //The smallest width possible
yMin = 8; // height
el = getReal(event.srcElement, "className", "resizeMe");
if (el.className == "resizeMe") {
str = getDirection(el);
//Fix the cursor
if (str == "") str = "default";
else str += "-resize";
el.style.cursor = str;
}
//Dragging starts here
if(theobject != null) {
if (dir.indexOf("e") != -1)
theobject.el.style.width = Math.max(xMin, theobject.width + window.event.clientX - theobject.grabx) + "px";
if (dir.indexOf("s") != -1)
theobject.el.style.height = Math.max(yMin, theobject.height + window.event.clientY - theobject.graby) + "px";
if (dir.indexOf("w") != -1) {
theobject.el.style.left = Math.min(theobject.left + window.event.clientX - theobject.grabx, theobject.left + theobject.width - xMin) + "px";
theobject.el.style.width = Math.max(xMin, theobject.width - window.event.clientX + theobject.grabx) + "px";
}
if (dir.indexOf("n") != -1) {
theobject.el.style.top = Math.min(theobject.top + window.event.clientY - theobject.graby, theobject.top + theobject.height - yMin) + "px";
theobject.el.style.height = Math.max(yMin, theobject.height - window.event.clientY + theobject.graby) + "px";
}
window.event.returnValue = false;
window.event.cancelBubble = true;
} 
}
function getReal(el, type, value) {
temp = el;
while ((temp != null) && (temp.tagName != "BODY")) {
if (eval("temp." + type) == value) {
el = temp;
return el;
}
temp = temp.parentElement;
}
return el;
}
document.onmousedown = doDown;
document.onmouseup = doUp;
document.onmousemove = doMove;
</SCRIPT>
</head>
<body>
<div class="resizeMe" id="testDiv">
<div id="innerNice">
<p align="center"> </p>
<p align="center">
请在边框处拖动鼠标</p>
<p> </p>
<p> </p>
<p> </p>
</div>
</div>
</body>
</html>

希望本文所述对大家的javascript程序设计有所帮助。

Javascript 相关文章推荐
用js判断页面刷新或关闭的方法(onbeforeunload与onunload事件)
Jun 22 Javascript
jQuery拖动图片删除示例
May 10 Javascript
通过javascript把图片转化为字符画
Oct 24 Javascript
js实现简单锁屏功能实例
May 27 Javascript
使用CamanJS在Web页面上处理图像的技巧
Aug 18 Javascript
javascript动态生成树形菜单的方法
Nov 14 Javascript
使用Node.js实现RESTful API的示例
Aug 01 Javascript
bootstrap-table组合表头的实现方法
Sep 07 Javascript
React Native中导航组件react-navigation跨tab路由处理详解
Oct 31 Javascript
解决vue单页面修改样式无法覆盖问题
Aug 05 Javascript
layer.prompt输入层的例子
Sep 24 Javascript
JavaScript中Object、map、weakmap的区别分析
Dec 15 Javascript
jQuery实现伸展与合拢panel的方法
Apr 30 #Javascript
jQuery实现鼠标悬停显示提示信息窗口的方法
Apr 30 #Javascript
jQuery层动画定位滑动效果的方法
Apr 30 #Javascript
jquery中$each()方法的使用指南
Apr 30 #Javascript
jQuery实现手机号码输入提示功能实例
Apr 30 #Javascript
javascript实现checkbox全选的代码
Apr 30 #Javascript
javascript实现的固定位置悬浮窗口实例
Apr 30 #Javascript
You might like
php 抽象类的简单应用
2011/09/06 PHP
用PHP代码给图片加水印
2015/07/01 PHP
PHP 等比例缩放图片详解及实例代码
2016/09/18 PHP
JavaScript 对话框和状态栏使用说明
2009/10/25 Javascript
jQuery 学习6 操纵元素显示效果的函数
2010/02/07 Javascript
Prototype源码浅析 Number部分
2012/01/16 Javascript
将查询条件的input、select清空
2014/01/14 Javascript
jQuery结合HTML5制作的爱心树表白动画
2015/02/01 Javascript
基于jQuery实现在线选座之高铁版
2015/08/24 Javascript
浅谈js中的in-for循环
2016/06/28 Javascript
写一个移动端惯性滑动&amp;回弹Vue导航栏组件 ly-tab
2018/03/06 Javascript
vue-cli的工程模板与构建工具详解
2018/09/27 Javascript
微信小程序iOS下拉白屏晃动问题解决方案
2019/10/12 Javascript
vue element 中的table动态渲染实现(动态表头)
2019/11/21 Javascript
python计算牛顿迭代多项式实例分析
2015/05/07 Python
python实现逻辑回归的方法示例
2017/05/02 Python
python+pygame简单画板实现代码实例
2017/12/13 Python
python 请求服务器的实现代码(http请求和https请求)
2018/05/25 Python
Python图像处理之图像的缩放、旋转与翻转实现方法示例
2019/01/04 Python
基于css3的属性transition制作菜单导航效果
2015/09/01 HTML / CSS
CSS3实现文字波浪线效果示例代码
2016/11/20 HTML / CSS
洲际酒店集团美国官网:IHG美国
2017/11/16 全球购物
英国复古服装和球衣购买网站:3Retro Football
2018/07/09 全球购物
联想马亚西亚官方网站:Lenovo Malaysia
2018/09/19 全球购物
Sunglass Hut巴西网上商店:男女太阳镜
2020/10/04 全球购物
htmlentities() 和 htmlspecialchars()有什么区别
2015/07/01 面试题
大三预备党员入党思想汇报
2014/01/08 职场文书
我的五年职业生涯规划
2014/01/23 职场文书
公司自我介绍演讲稿
2014/08/21 职场文书
2014年预备党员学习新党章思想汇报
2014/09/15 职场文书
区政府领导班子个人对照检查材料
2014/09/25 职场文书
2015中学政教处工作总结
2015/07/22 职场文书
2016年3月份红领巾广播稿
2015/12/21 职场文书
为什么阅读对所有年龄段的孩子都很重要?
2019/07/08 职场文书
分享几种python 变量合并方法
2022/03/20 Python
python数字图像处理实现图像的形变与缩放
2022/06/28 Python