`
- 浏览:
174376 次
- 性别:
- 来自:
山东菏泽
-
- <html>
- <head>
- <title></title>
- </head>
- <body>
- <p onclick = "ShowDivWin()">点下我
- </body>
- <script language="javascript" type="text/javascript">
- /* @author Nieger Dai
- @date 2007.11.15
- */
- var isIe = ( document.all ) ? true : false;
- var moveable = false;
- var topDivBorderColor = "#336699";
- // 提示窗口的边框颜色
- var topDivBgColor = "#6795B4";
- // 提示窗口的标题的背景颜色
- var contentBgColor = "white";
- // 内容显示窗口的背景颜色
- var contentFontColor = "black";
- // 内容显示窗口字体颜色
- var titleFontColor = "white";
- // 弹出窗口标题字体颜色
- var index = 10000;
- // z - index;
- // 创建弹出窗口,构造函数
- function DivWindow( id, title, w, h, content )
- {
- this.id = id;
- // 窗口id
- this.zIndex = index + 2;
- this.title = title;
- // 弹出窗口名称
- this.message = content;
- // 弹出窗口内容
- this.width = w;
- // 弹出窗口宽度
- this.height = h;
- // 弹出窗口高度
- this.left = ( document.body.clientWidth ) ? ( document.body.clientWidth - this.width ) / 2 : 0;
- // 弹出窗口位置,距屏幕左边的位置
- this.top = ( document.body.clientHeight ) ? ( document.body.clientHeight - this.height ) / 2 : 0;
- // 弹出窗口位置,距屏幕上边的位置
- // this.init = init;
- // this.init();
- }
- // ---------------------------------------
- // 根据构造函数设定初始值,创建弹出窗口
- DivWindow.prototype =
- {
- // 设置弹出窗口标题字体颜色
- setPopupTopTitleFontColor : function( tFontColor )
- {
- titleFontColor = tFontColor;
- }
- ,
- // 设置弹出窗口标题背景颜色
- setPopupTopBgColor : function( tBgColor )
- {
- topDivBgColor = tBgColor;
- }
- ,
- // 设置弹出窗口风格, 包括标题栏的背景,弹出窗口边框颜色,内容窗体背景颜色,内容窗体字体颜色
- setPopupColor : function( borderColor, bgColor, tFontColor, cBgColor, fColor )
- {
- topDivBorderColor = borderColor;
- topDivBgColor = bgColor;
- titleFontColor = tFontColor;
- contentBgColor = cBgColor;
- contentFontColor = fColor;
- }
- ,
- // 打开一个弹出窗口
- open : function()
- {
- var sWidth, sHeight;
- sWidth = document.body.clientWidth;
- sHeight = document.body.clientHeight;
- var bgObj = document.createElement( "div" );
- bgObj.setAttribute( 'id', 'window' + this.id );
- var styleStr = "top:0px;left:0px;position:absolute;background:#245;width:" + sWidth + "px;height:" + sHeight + "px;";
- styleStr += ( isIe ) ? "filter:alpha(opacity=0);" : "opacity:0;";
- bgObj.style.cssText = styleStr;
- document.body.appendChild( bgObj );
- // 让背景逐渐变暗
- //showBackground( bgObj, 25 );
- // 弹出窗口框体背景容器
- var windowTopBgDiv = document.createElement( "div" );
- windowTopBgDiv.setAttribute( 'id', 'windowTopBg' + this.id );
- windowTopBgDiv.style.position = "absolute";
- windowTopBgDiv.style.zIndex = this.zIndex ;
- windowTopBgDiv.style.width = this.width ;
- windowTopBgDiv.style.height = this.height;
- windowTopBgDiv.style.left = this.left;
- windowTopBgDiv.style.top = this.top;
- windowTopBgDiv.style.background = topDivBgColor;
- windowTopBgDiv.style.fontSize = "9pt";
- windowTopBgDiv.style.cursor = "default";
- windowTopBgDiv.style.border = "1px solid " + topDivBorderColor;
- windowTopBgDiv.attachEvent( "onmousedown", function()
- {
- if( windowTopBgDiv.style.zIndex != index )
- {
- indexindex = index + 2;
- var idx = index;
- windowTopBgDiv.style.zIndex = idx;
- }
- }
- );
- // 弹出窗口头部框体
- var windowTopDiv = document.createElement( "div" );
- windowTopDiv.setAttribute( 'id', 'windowTop' + this.id );
- windowTopDiv.style.position = "absolute";
- windowTopDiv.style.background = topDivBgColor;
- // "white";
- windowTopDiv.style.color = titleFontColor;
- windowTopDiv.style.cursor = "move";
- windowTopDiv.style.height = 20;
- windowTopDiv.style.width = this.width - 2 * 2;
- // 开始拖动;
- windowTopDiv.attachEvent( "onmousedown", function()
- {
- if( event.button == 1 )
- {
- // 锁定标题栏;
- windowTopDiv.setCapture();
- // 定义对象;
- var win = windowTopDiv.parentNode;
- // 记录鼠标和层位置;
- x0 = event.clientX;
- y0 = event.clientY;
- x1 = parseInt( win.style.left );
- y1 = parseInt( win.style.top );
- // 记录颜色;
- // topDivBgColor = windowTopDiv.style.backgroundColor;
- // 改变风格;
- // windowTopDiv.style.backgroundColor = topDivBorderColor;
- win.style.borderColor = topDivBorderColor;
- moveable = true;
- }
- }
- );
- // 停止拖动
- windowTopDiv.attachEvent( "onmouseup", function()
- {
- if( moveable )
- {
- var win = windowTopDiv.parentNode;
- win.style.borderColor = topDivBgColor;
- windowTopDiv.style.backgroundColor = topDivBgColor;
- windowTopDiv.releaseCapture();
- moveable = false;
- }
- }
- );
- // 开始拖动
- windowTopDiv.attachEvent( "onmousemove", function()
- {
- if( moveable )
- {
- var win = windowTopDiv.parentNode;
- win.style.left = x1 + event.clientX - x0;
- win.style.top = y1 + event.clientY - y0;
- var objRith = parseInt(win.style.left,10) + parseInt(win.style.width,10);
- var objButton = parseInt(win.style.top,10) + parseInt(win.style.height,10);
- if(parseInt(win.style.left,10) <= 0)
- {
- win.style.left = 1 ;
- }
- if(parseInt(win.style.top,10) <= 0)
- {
- win.style.top = 1 ;
- }
- if ( objRith >= document.body.clientWidth )
- {
- win.style.left = document.body.clientWidth - parseInt(win.style.width) - 1;
- }
- if ( objButton >= document.body.clientHeight )
- {
- win.style.top = document.body.clientHeight - parseInt(win.style.height) - 1;
- }
- }
- }
- );
- // 双击弹出窗口
- windowTopDiv.attachEvent( "ondblclick", function()
- {
- maxOrMinPopupDiv( windowTopOperateSpan, windowContentDiv );
- }
- );
- // 增加一个弹出窗口标题的显示
- var windowTopTitleSpan = document.createElement( "span" );
- windowTopTitleSpan.setAttribute( 'id', 'windowTopTitle' + this.id );
- windowTopTitleSpan.style.width = this.width - 2 * 12 - 4;
- windowTopTitleSpan.style.paddingLeft = "3px";
- windowTopTitleSpan.innerHTML = this.title;
- // 增加一个弹出窗口最小化,最大化的操作
- var windowTopOperateSpan = document.createElement( "span" );
- windowTopOperateSpan.setAttribute( 'id', 'windowTopOperate' + this.id );
- windowTopOperateSpan.style.width = 12;
- windowTopOperateSpan.style.borderWidth = "0px";
- windowTopOperateSpan.style.color = titleFontColor;
- // "white";
- windowTopOperateSpan.style.fontFamily = "webdings";
- windowTopOperateSpan.style.cursor = "default";
- windowTopOperateSpan.innerHTML = "0";
- // 最大化或者最小化弹出窗口操作
- windowTopOperateSpan.attachEvent( "onclick", function()
- {
- maxOrMinPopupDiv( windowTopOperateSpan, windowContentDiv );
- }
- );
- // 增加一个弹出窗口关闭的操作
- var windowTopCloseSpan = document.createElement( "span" );
- windowTopCloseSpan.setAttribute( 'id', 'windowTopClose' + this.id );
- windowTopCloseSpan.style.width = 12;
- windowTopCloseSpan.style.borderWidth = "0px";
- windowTopCloseSpan.style.color = titleFontColor;
- // "white";
- windowTopCloseSpan.style.fontFamily = "webdings";
- windowTopCloseSpan.style.cursor = "default";
- windowTopCloseSpan.innerHTML = "r";
- // 关闭窗口
- windowTopCloseSpan.attachEvent( "onclick", function()
- {
- windowTopDiv.removeChild( windowTopTitleSpan );
- windowTopDiv.removeChild( windowTopOperateSpan );
- windowTopDiv.removeChild( windowTopCloseSpan );
- windowTopBgDiv.removeChild( windowTopDiv );
- windowTopBgDiv.removeChild( windowContentDiv );
- document.body.removeChild( windowTopBgDiv );
- document.body.removeChild( bgObj );
- }
- );
- // 内容
- var windowContentDiv = document.createElement( "div" );
- windowContentDiv.setAttribute( 'id', 'windowContent' + this.id );
- windowContentDiv.style.background = contentBgColor;
- windowContentDiv.style.color = contentFontColor;
- windowContentDiv.style.cursor = "default";
- windowContentDiv.style.height = ( this.height - 20 - 6 );
- windowContentDiv.style.width = "100%";
- windowContentDiv.style.position = "relative";
- windowContentDiv.style.left = 0;
- windowContentDiv.style.top = 24;
- windowContentDiv.style.lineHeight = "20px";
- windowContentDiv.style.fontSize = "10pt";
- windowContentDiv.style.wordBreak = "break-all";
- windowContentDiv.style.padding = "3px";
- windowContentDiv.innerHTML = this.message;
- // 将内容写入到文件中
- windowTopDiv.appendChild( windowTopTitleSpan );
- windowTopDiv.appendChild( windowTopOperateSpan );
- windowTopDiv.appendChild( windowTopCloseSpan );
- windowTopBgDiv.appendChild( windowTopDiv );
- windowTopBgDiv.appendChild( windowContentDiv );
- document.body.appendChild( windowTopBgDiv );
- }
- }
- // ---------------------------------------
- // 最大或者最小化弹出窗口
- function maxOrMinPopupDiv( windowTopOperateSpan, windowContentDiv )
- {
- var win = windowTopOperateSpan.parentNode.parentNode;
- var tit = windowTopOperateSpan.parentNode;
- var flg = windowContentDiv.style.display == "none";
- if( flg )
- {
- win.style.height = parseInt( windowContentDiv.style.height ) + parseInt( tit.style.height ) + 2 * 2;
- windowContentDiv.style.display = "block";
- windowTopOperateSpan.innerHTML = "0";
- }
- else
- {
- win.style.height = parseInt( tit.style.height ) + 2 * 2;
- windowTopOperateSpan.innerHTML = "2";
- windowContentDiv.style.display = "none";
- }
- }
- // ---------------------------------------
- // 让背景渐渐变暗
- function showBackground( obj, endInt )
- {
- if( isIe )
- {
- obj.filters.alpha.opacity += 1;
- if( obj.filters.alpha.opacity < endInt )
- {
- setTimeout( function()
- {
- this.showBackground( obj, endInt )
- }
- , 5 );
- }
- }
- else
- {
- var al = parseFloat( obj.style.opacity );
- al += 0.01;
- obj.style.opacity = al;
- if( al < ( endInt / 100 ) )
- {
- setTimeout( function()
- {
- this.showBackground( obj, endInt )
- }
- , 5 );
- }
- }
- }
- // ---------------------------------------
- // 关闭弹出窗口
- function closeDivWindow( id )
- {
- var windowTopTitleSpan = document.getElementById( "windowTopTitle" + id );
- var windowTopOperateSpan = document.getElementById( "windowTopOperate" + id );
- var windowTopCloseSpan = document.getElementById( "windowTopClose" + id );
- var windowTopDiv = document.getElementById( "windowTop" + id );
- var windowTopBgDiv = document.getElementById( "windowTopBg" + id );
- var windowContentDiv = document.getElementById( "windowContent" + id );
- var bgObj = document.getElementById( "window" + id );
- windowTopDiv.removeChild( windowTopTitleSpan );
- windowTopDiv.removeChild( windowTopOperateSpan );
- windowTopDiv.removeChild( windowTopCloseSpan );
- windowTopBgDiv.removeChild( windowTopDiv );
- windowTopBgDiv.removeChild( windowContentDiv );
- document.body.removeChild( windowTopBgDiv );
- document.body.removeChild( bgObj );
- }
- // ---------------------------------------
- function ShowDivWin()
- {
- var w = new DivWindow("DivWin","标题",400,300,"按住标题可拖动 <br> 双击标题试一下?<br> 不能把我移出边框吧!! O(∩_∩)O");
- w.open();
- }
- </script>
- </html>
分享到:
Global site tag (gtag.js) - Google Analytics
相关推荐
标题中的“经典拖曳层移动层效果”是指在网页中实现的一种交互功能,允许用户通过鼠标拖动来改变页面上某个元素的位置。这种效果常见于各种网页应用中,如窗口式对话框、可自定义布局的界面等。通过拖曳层移动层技术...
模块拖曳移动效果[拖曳层移动层],鼠标移动层
标题中的“仿3721首页模块拖曳移动效果[拖曳层移动层].rar”指的是一种网页设计技术,具体来说是实现页面元素(如模块或区块)可被用户通过鼠标拖动来改变其在页面上的位置的效果。3721是中国早期的互联网公司,其...
图片放大 缩小 拖曳 移动 点击弹出层 发送ajax等 图片放大 缩小 拖曳 移动 点击弹出层 发送ajax等 图片放大 缩小 拖曳 移动 点击弹出层 发送ajax等 图片放大 缩小 拖曳 移动 点击弹出层 发送ajax等 图片放大 缩小 ...
根据给定的信息,本文将详细解析两种利用JavaScript实现层拖曳的方法。这两种方法均涉及到DOM操作、事件监听以及鼠标事件的处理。 ### 方法一:基于鼠标事件的传统拖拽实现 #### 1. 原理简介 这种方法的核心是通过...
在这个新闻系统中,C#被用来编写控制器、模型以及业务逻辑层的代码,处理数据库交互、验证用户输入和执行其他复杂的业务规则。 数据库方面,可能采用了如SQL Server这样的关系型数据库管理系统,用于存储新闻条目、...
js控制的弹出层,并且可拖曳,需要与jquery.js文件置于同一目录下
仿3721首页模块拖曳移动效果[拖曳层移动层]呵,做了一些细致的处理 html, body { width:100%; height:100%; padding:0px; margin:0px; } body { text-align:center; font-size:14px; } .cell_left, .cell_...
【标题】: "汽车右后拖曳臂轴断裂原因分析" 【描述】: 本文针对某汽车在短时间内出现右后拖曳臂轴断裂的问题进行了深入的分析,通过一系列的检验和测试,包括宏观和微观检验、硬度测试、金相检验以及化学成分分析,...
为了满足拖曳线列阵声呐系统数据传输实时性高、数据量大的要求, 设计了一种基于PCI总线的数据录取系统。硬件方面, 系统采用PCI9054高效率DMA传输技术与外扩大容量FIFO相结合的方案, 实现了高速、连续的声呐数据传输;...
在前端开发中,实现一个点击后弹出的div层,并使其具备拖曳功能是一个常见的需求,尤其在构建用户友好的交互界面时显得尤为重要。具体到这份文档,我们将会探讨如何通过JavaScript代码实现一个可拖曳的弹出层效果,...
快捷方式(div)拖曳,有需要的赶紧下载。
本文实例讲述了JS实现可展开折叠层的鼠标拖曳效果。分享给大家供大家参考。具体如下: 这是一款简单JS代码实现的鼠标拖曳图层效果,比较精简,大家参考一下。鼠标点击层标题栏可实现层内容的展开与折叠,按住标题栏...
2. **在轨拖曳**:在轨拖曳是一种利用地球大气层中的微小阻力来改变航天器轨道的技术。通过调整航天器的形状或表面积,可以增强与大气层的相互作用,从而实现轨道调整,减少对推进剂的依赖。 3. **姿轨复合控制**:...
Echarts的地图实现拖拽缩放同步功能(解决多层geo缩放、拖动卡顿问题),大屏项目显示云南省3D的地图,可拖拽缩放、地图打点、点击图标弹框等等功能。 ## 使用 - 启动调试服务: `npm start` - 构建 dist: `npm run ...
为补偿拖体深度变化,本文提出了由外层深度升沉补偿控制系统和内层位置伺服控制系统双层结构的水下拖曳升沉补偿系统总体设计方案,运用基于紧格式线性化的非参数模型自适应控制方法设计了系统外层深度升沉补偿控制器...
一个简单的鼠标拖曳图层效果,简单JS代码实现的鼠标拖曳图层效果,比较精简,大家参考一下。