Html
    Css
    Js

    
                        
 * {
	margin:0;
	padding:0;
	box-sizing:border-box;
}
h1 {
	display:flex;
	justify-content:center;
}
a {
	color:#000;
	text-decoration:none;
}
.pop {
	font-size:60px;
}
.main {
	display:none;
}
.mask {
	position:fixed;
	top:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,.3);
}
.login-box {
	width:500px;
	height:250px;
	background-color:#fff;
	position:relative;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	box-shadow:1px 1px 15px #fff;
}
.title {
	position:relative;
	text-align:center;
	height:60px;
	line-height:60px;
	cursor:move;
	background-color:aqua;
}
.title .sut {
	position:absolute;
	right:-10px;
	top:-20px;
	content:'关闭';
	width:50px;
	height:50px;
	line-height:50px;
	border-radius:50%;
	background-color:#fff;
	box-shadow:1px 1px 15px #ddd;
}
.input-box {
	position:relative;
	display:flex;
	flex-flow:column;
	justify-content:center;
	margin-top:20px;
}
p {
	width:100%;
	text-align:center;
	margin-bottom:20px;
}
.inp {
	outline:none;
	width:250px;
	height:30px;
	border:1px solid #ccc;
	padding-left:5px;
}
.sub {
	background-color:transparent;
	border:1px solid #ccc;
	width:200px;
	margin:auto;
	font-size:16px;
	padding:10px 0;
	cursor:pointer;
}

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

模态框的拖动效果

更新时间:2022-01-04 15:01:07

点击弹出模态框,可以进行拖拽模态框,就可以看到被遮挡住的内容。

0