Html
    Css
    Js

    
                        
.tanchu_kuang {
	width:70%;
	height:70%;
	min-width:480px!important;
	min-height:200px!important; 
	position:fixed;
	z-index:9999;
	top:15%;
	left:15%;
	background:#fff;
	border:5px solid rgba(0,0,0,1);
	border-radius:10px;
	box-shadow:-1px 0 10px rgba(25,118,210,.2),/*左边阴影*/  
    1px 0 10px rgba(25,118,210,.2),/*右边阴影*/  
    0 -1px 10px rgba(25,118,210,.2),/*顶部阴影*/  
    0 1px 10px rgba(25,118,210,.2);
	overflow-y:auto;
	overflow-x:hidden;
}
.kuang_title_box:hover {
	cursor:move;
}
.kuang_title_box {
	position:absolute;
	top:0;
	right:0;
	width:100%;
	height:32px;
	border-bottom:1px solid #e6e6e6;
	z-index:100;
	background:#fff;
}
.kuang_title_box span {
	line-height:32px;
	padding-left:20px;
	display:inline-block;
}
.kuang_title_box a {
	display:block;
	width:32px;
	height:32px;
	line-height:32px;
	text-align:center;
	color:#333;
	float:right;
	text-decoration:none;
}
.kuang_title_box a:hover {
	background:#e6e6e6;
}
.kuang_contant {
	width:100%;
	height:90%;
	padding:40px 20px 0 20px;
	position:relative;
	overflow-y:auto;
}
.tanchu_kuang:before {
	content:'';
	width:100px;
	height:100px;
	background:red;
}

                        
↑上面代码改变,会自动显示代码结果 jQuery调用版本:1.11.3
 立即下载

jQuery弹出窗口可移动、缩放

4
      我娘她儿子最帅0
      2017/11/1 16:17:32
      var L = e.clientX - disX;
      var T = e.clientY - disY;
      if (L < 0) {
          L = 0;
      } else if (L > document.documentElement.clientWidth - obj.offsetWidth) {
          L = document.documentElement.clientWidth - obj.offsetWidth;
      }
      if (T < 0) {
          T = 0;
      } else if (T > document.documentElement.clientHeight - obj.offsetHeight) {
          T = document.documentElement.clientHeight - obj.offsetHeight;
      }
      回复
      つ小白┿0
      2017/10/26 13:53:49
      效果还不完善,还有很多bug  ,请谅解。抽空我会完善一下 回复
      小惧0
      2017/10/13 14:41:28
      不好意思,其实我只是想试试评论功能>不过既然已经评论出去了,那我就问问前辈:当拖动时,鼠标移出浏览器区域 松开鼠标,在进入时事件还在,该怎么破 回复
      小惧0
      2017/10/13 14:37:39