阅读背景:

自定义 div 弹窗,遮罩层

来源:互联网 

css 样式

<style>
	.remarksBox{
		position:fixed;  
		left:50%;
		margin-left:-100px;
		top:50%;
		margin-top:-50px;
		border: 1px solid red;
		width: 200px;
		height: 100px;
		display: none;
		text-align: center;
		z-index: 1000;/* 要比遮罩层大 */
	}
	/* 遮罩层 */
	.mask{
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.5);
		display: none;
		z-index: 999;
	}
</style>
<style>
	.remarksBox{
		position:f



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: