网站首页 手机版
 注册 登录
您现在的位置: 畅无忧设计 >> 网页特效 >> 表格图层 >> 正文
最新文章
· JS代码实现单元格移动效果
· JavaScript让表格的边框闪烁起来
· 网页Div层拖拽--Clone特效代码
· 可拖动的DIV层
· 简单拖曵的原理与实例
· 上传图片之前先预览图片
· 漂亮的Js拖动层,窗口拖拽(改变大小
· 隔行换色,鼠标划过改变颜色
· Js点击文字弹出层,点击层以外区域关
· CSS自动竖向排列的布局方法
热门文章
 js实现div区域块伸缩效果(toggle)
 js弹出层组件artDialog2.1正式版
 一个简单实用的jquery拖动插件jque
 JS仿EXCEL表格功能
 点击页面任何地方,将div隐藏,除了
 动态插入、添加删除表格行的JS代码
 带遮罩效果并可以拖动的DIV弹出层
 Js点击文字弹出层,点击层以外区域
 利用js向表格动态追加行
 JQuery EasyValidator表单验证插件
相关文章
网页窗口拖拽(改变大小/最小化/最大化/还
只在关闭窗口的时候提示,刷新的时候不提
Javascript动态调整文章的行距、字体、颜
可缩放、拖动,关闭或最小化的JS窗口
来源:源码爱好者 更新时间:2011/6/6 0:09:02 阅读次数: 我要投稿
△运行 ☉预览 #复制 +收藏
特效代码:
<title>可缩放、拖动,关闭或最小化的JS窗口</title>
<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='-';
     }
}
//--------------------------------------------DIV-------------------------------------------------//
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);
//--------------------------------------------DIV-------------------------------------------------//
}
</script>
<body>
<select style="position:absolute; top:600;"></select>
<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,60,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,60,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,60,300,300);
 }else{
    if(objWin3.Window.style.display=='none'){
   objWin3.Window.style.display='';
    }
 }
}
</script>
<input type="button" value="弹出【窗口3】" onClick="openWin()" />
</body>
△运行 ☉预览 #复制 +收藏
特效说明:
可缩放、可拖动,可关闭或最小化的JS窗口,另有弹出窗口,仿Windows的窗口效果,很不错的代码,平时大家会用到的,作为学习的参考资料也是有价值的。
  • 上一篇文章:
  • 下一篇文章:
  • 关于我们 - 联系我们 - 广告服务 - 在线投稿 - 友情链接 - 网站地图 - 版权声明
    CopyRight 2008-2010, CWYDESIGN.COM - 畅无忧设计, Inc. All Rights Reserved
    滇ICP备09005765号