JS实现可缩放、拖动、关闭和最小化的浮动窗口完整实例

本文实例讲述了JS实现可缩放、拖动、关闭和最小化的浮动窗口方法。分享给大家供大家参考。具体实现方法如下:

代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JS实现可缩放、拖动、关闭和最小化的浮动窗口</title>
</head>
<style type="text/css">
 .divWindow{word-wrap:break-word;position:absolute; overflow:hidden;}
 .divBar{border:#000000 1px solid;position:absolute;border-bottom:#000000 1px solid;width:100%;height:20px;background-color:#0099FF;cursor:hand;line-height:20px;}
 .divChange{position:absolute;right:25px;font-size:10pt;}
 .divClose{position:absolute;right:5px;font-size:11pt;}
 .divTitle{position:absolute;left:5px;font-size:10pt;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow: hidden;}
 .divContent{border:#000000 1px solid;border-top:#000000 0px solid;position:absolute; top:20px;width:100%; background-color:#FFFFFF; overflow-y:auto;
    SCROLLBAR-BASE-COLOR: #FFFFFF;SCROLLBAR-ARROW-COLOR: #999999;SCROLLBAR-FACE-COLOR: #EEEEEE;SCROLLBAR-HIGHLIGHT-COLOR: #EEEEEE;
    SCROLLBAR-SHADOW-COLOR: #EEEEEE;SCROLLBAR-3DLIGHT-COLOR: #FFFFFF;SCROLLBAR-TRACK-COLOR: #FFFFFF;SCROLLBAR-DARKSHADOW-COLOR: #CCCCCC;}
 .divReSize{height:7px; width:7px; overflow:hidden; background-color:#0000FF; position:absolute; bottom:6px; right:6px; cursor:nw-resize}
 .divIframe{height:100%;width:100%;}
</style>
<script language="javascript">
var zindex=0  //全局变量
function dragClass(name,title,content,left,top,width,height){
var isMouseDown=false;
var maximum=false;
var offX=0;   //设置抓取点X坐标
var offY=0;   //设置抓取点Y坐标
var oldLeft;  //保存正常状态的X坐标
var oldTop;   //保存正常状态的Y坐标
this.mousedown= function (){    //按下拖动点
     Bar.setCapture(); //设置抓取
     offX=parseInt(event.clientX)-parseInt(Window.style.left);
     offY=parseInt(event.clientY)-parseInt(Window.style.top);
     isMouseDown=true;
 if(Window.style.zIndex<=zindex){
  zindex++;
  Window.style.zIndex=zindex;
 }
}
this.mousemove= function (){    //拖动窗口
     if (isMouseDown && !maximum){
  Bar.style.cursor='move'
  Window.style.left=event.clientX-offX;
  Window.style.top=event.clientY-offY;
  if(Window.style.zIndex<=zindex){
   zindex++;
   Window.style.zIndex=zindex;
  }
     }
}
this.mouseup=function (){     //松开按钮
     Bar.releaseCapture();     //取消抓取
     Bar.style.cursor='hand';
     if (parseInt(Window.style.top)<0){
     Window.style.top='0px';
     }
     if (parseInt(Window.style.left)<0){
     Window.style.left='0px';
     }
     isMouseDown=false;
}
this.dblclick=function (){    //双击最大最小化
     if (!maximum){
    oldLeft=Window.style.left;   //保存正常状态的X坐标
    oldTop=Window.style.top;    //保存正常状态的Y坐标
    Window.style.left='0px';
    Window.style.top='0px';
    Window.style.width= document.body.clientWidth;    //网页可见区域宽
    Title.style.width=(document.body.clientWidth-40)+'px';  //设置标题长度
    ReSize.style.display='none';
    if(Change.innerText=='-'){
      Window.style.height='100%';
      Content.style.height=document.body.clientHeight-20; //网页可见区域宽-标题高度
    }else{
      Window.style.height='20px';
    }
    maximum=true;
     }else{
    Window.style.left=oldLeft;
    Window.style.top=oldTop;
    Window.style.width=width+'px';
    Title.style.width=(width-40)+'px';
    ReSize.style.display='';
    if(Change.innerText=='-'){
      Window.style.height=height+'px';
      Content.style.height=parseInt(height-20)+'px';
    }else{
      Window.style.height='20px';
    }
    maximum=false;
     }
 if(Window.style.zIndex<=zindex){
  zindex++;
  Window.style.zIndex=zindex;
 }
}
this.changeWindow=function (){   //收缩窗口
     event.cancelBubble=true;
  if(Change.innerText=='-'){
    Window.style.height='20px';
    Change.innerText='□';
    Content.style.display='none';
    ReSize.style.display='none';
     }else{
    if (maximum){
      Window.style.height='100%';
      Content.style.display='';
      ReSize.style.display='';
      Content.style.height=document.body.clientHeight-20; //网页可见区域宽-标题高度
    }else{
      Window.style.height=height+'px';
      Content.style.display='';
      ReSize.style.display='';
      Content.style.height=parseInt(height-20)+'px';
    }
    Change.innerText='-';
     }
}

var Window=document.createElement("div");
 Window.id="divWindow"+ name;
 Window.className="divWindow";
 Window.style.left=left+'px';
 Window.style.top=top+'px';
 Window.style.width=width+'px';
 Window.style.height=height+'px';
 Window.onclick=function(){
  if(parseInt(Window.style.zIndex)<=zindex){
   zindex++;
   Window.style.zIndex=zindex;
  }
 }
this.Window=Window;
//公有属性,类外可操作;若要在类外操作,可将元素改为公有属性
 
var Bar=document.createElement("div");
 Bar.id="divBar"+name;
 Bar.onselectstart="return false";
 Bar.className="divBar";
 Bar.onmousedown=this.mousedown;
 Bar.ondblclick=this.dblclick;
 Bar.onmousemove=this.mousemove;
 Bar.onmouseup=this.mouseup;
 Window.appendChild(Bar);
var Title=document.createElement("span");
 Title.id="divTitle"+ name;
 Title.className="divTitle";
 Title.style.width=(width-40)+'px';    //自适应标题长度
 Title.innerText=title;
 Bar.appendChild(Title);
var Change=document.createElement("span");
 Change.id="divChange"+ name;
 Change.className="divChange";
 Change.innerText="-";
 Change.ondblclick=this.changeWindow;
 Change.onclick=this.changeWindow;
 Bar.appendChild(Change);
var Close=document.createElement("span");
 Close.id="divClose"+ name;
 Close.onclick=function(){
  Window.style.display='none';
 }
 Close.className="divClose";
 Close.innerText="×";
 Bar.appendChild(Close);
var Content=document.createElement("div");
 Content.id="divContent"+ name;
 Content.className="divContent"
 Content.innerHTML=content;
 Content.style.height=parseInt(height-20)+'px';
 Window.appendChild(Content);
 
var ReSize=document.createElement("div");
 ReSize.className="divReSize";
 ReSize.onmousedown=function(){
  if(Window.style.zIndex<=zindex){
   zindex++;
   Window.style.zIndex=zindex;
  }
  ReSize.setCapture();
  isMouseDown=true;
 }
 ReSize.onmousemove=function(){
   if (isMouseDown && !maximum)
   {
   width=parseInt(event.clientX)-parseInt(Window.style.left)+5;
   height=parseInt(event.clientY)-parseInt(Window.style.top)+5;
   if(width>100){       //设置最小宽度
    Window.style.width=width+'px';
    Title.style.width=(width-40)+'px';
   }
   if(height>100){       //设置最小高度
    Window.style.height=height+'px';
    Content.style.height=parseInt(height-20)+'px';
   }
   }
 }
 ReSize.onmouseup=function(){
  ReSize.releaseCapture();
  isMouseDown=false;
 }
 Window.appendChild(ReSize);
var Iframe=document.createElement("iframe"); //添加iframe,IE6.0下遮挡<select>控件
 Iframe.className="divIframe";
 Window.appendChild(Iframe);
 
 document.body.appendChild(Window);

}
</script>
<body>
<script>
//dragClass(ID,窗口标题,内容,X坐标,Y坐标,宽,长)
var c1="窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1窗口1";
objWin1=new dragClass('win1','拖动窗口1',c1,0,150,300,300);
var c2="窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2窗口2";
objWin2=new dragClass('win2','拖动窗口2',c2,350,150,300,300);
var objWin3;
function openWin(){
 if(objWin3==null){
  var c3="123窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3窗口3";
  objWin3=new dragClass('win3',c3,c3,700,150,300,300);
 }else{
    if(objWin3.Window.style.display=='none'){
   objWin3.Window.style.display='';
    }
 }
}
</script>
<input type="button" value="弹出【窗口3】" onClick="openWin()" />
</body>
</html>

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

(0)

相关推荐

  • JS高级拖动技术 setCapture,releaseCapture

    复制代码 代码如下: <script type="text/javascript"> <!-- window.onload=function(){ objDiv = document.getElementById('drag'); drag(objDiv); }; function drag(dv){ dv.onmousedown=function(e){ var d=document; e = e || window.event; var x= e.layerX |

  • angularjs创建弹出框实现拖动效果

    本文实例介绍了angularjs创建弹出框实现拖动效果的相关代码,项目中需要将angular-ui-bootstrap中用到的弹出框,使之可拖动,分享给大家供大家参考,具体内容如下 运行效果图: 由于源文件中没有实现,需要自己实现指令,以下即为该指令,亲测可以实现. .directive('draggable', ['$document', function($document) { return function(scope, element, attr) { var startX = 0,

  • html+javascript实现可拖动可提交的弹出层对话框效果

    复制代码 代码如下: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>JAVASCRI

  • js 可拖动列表实现代码

    补充一点: 要禁止移动中选中文字,FF可以设置CSS xxxx{-moz-user-select:none;} 其他的浏览器可以设置 XXXX.onselectstart = function(){return false} 一种实现原理就是点击没目标元素之后,创建一个占位元素(或者复制一份目标元素,即拷贝B),然后拖动目标元素(或者复制的来的新元素B): 找到相应的位置之后,插入目标元素.清除占位元素或者B. 比如有一个列表: 复制代码 代码如下: <!DOCTYPE html PUBLIC

  • Javascript实现的类似Google的Div拖动效果代码

    复制代码 代码如下: JScript 文件: //检测浏览器 MSIE Firefox var ie=false,moz=false; (function() {//check the browser var userAgent=navigator.userAgent; if(userAgent.indexOf("MSIE")!=-1) ie=true; else if(userAgent.indexOf("Firefox")!=-1) moz=true; })()

  • javascript之可拖动的iframe效果代码

    // HISTORY// ------------------------------------------------------------------// Jan 23, 2004: Fixed problems which caused the script not to work in//               some framed situations. Improved browser support.//               Added easier "addH

  • JavaScript简单实现鼠标拖动选择功能

    复制代码 代码如下: <style><!--body{padding-top:50px;padding-left:100px;padding-right:150px;}  .fileDiv{float:left;width:100px;height:100px;text-align:center;line-height:100px;font-size:12px;border:1px solid #cccccc;margin-right:10px;margin-bottom:10px;} 

  • 纯js实现的积木(div层)拖动功能示例

    本文实例讲述了纯js实现的积木(div层)拖动功能.分享给大家供大家参考,具体如下: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>拖动</title> <style type="text/css"> </style> </head> <bo

  • javascript 事件处理、鼠标拖动效果实现方法详解

    先看看要拖动的层(模拟窗口)的效果图吧. 要实现的拖动效果:鼠标左键在窗口上方的标题栏上按下,同时移动鼠标,窗口跟着移动.窗口: 复制代码 代码如下: <div id="win"> <div id="win_header"></div> </div> 一点准备工作: 要让窗口能自由移动,那么窗口的定位(position)应该采用绝对定位(absolute): 给窗口添加标题栏,这里使用一个放在窗口顶部的层实现,同时将标

  • javascript div 弹出可拖动窗口

    /* * 创建弹出div窗口. 1.接口说明:DivWindow(id,title,width,height,content) 构造函数,创建一个弹出窗口对象 参数:id 弹出窗口id: title:弹出窗口标题名称: width:弹出窗口宽度 height:弹出窗口高度 content: 弹出窗口显示内容 2.接口说明: closeDivWindow(id) 关闭窗口 参数: id 弹出窗口id 3.接口说明:setPopupTopTitleFontColor(PopupTopTitleFon

  • js通过八个点 拖动改变div大小的实现方法

    复制代码 代码如下: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Resize</title> <style type="text/css"> #rRightDown,#rLeftDown,#rLeftUp,#rRightUp,#rRigh

  • js实现可拖动DIV的方法

    随着时代的变化,越来越感觉到js的重要性,js不仅可以做web页面(如Ext框架),还可以做一些web的特效,这些特效不仅兼容PC,而且兼容手机端,毕竟是基于浏览器的,和平台没关系.现在微软的windows8 系统的App都可以用js开发了,大家有时间可以去尝试一下. 现在切入正题,说一下js 实现可拖动Div.实现这个功能我们先说一下思路: 1.捕捉鼠标div的mousedown事件 2.捕捉 document的   mousemove事件 3.取消事件 然后我们看一下代码: 复制代码 代码如

随机推荐