前端弹框编写
Posted jmc218
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端弹框编写相关的知识,希望对你有一定的参考价值。
<head>
<style>
.adModal{
position:fixed;
background: black;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 998;
opacity: 0.4;
}
.tdModal{
position:fixed;
background: white;
z-index:1000;
width: 400px;
height: 300px;
left: 50%;
top: 50%;
margin: -200px 0 0 -300px;
}
</style>
</head>
<body>
<div class="adModal"></div>
<div class="tdModal">
<p>
姓名:<input type="text" name="name">
</p>
<input type="button" value="提交">
</div>
</body>
以上是关于前端弹框编写的主要内容,如果未能解决你的问题,请参考以下文章