首页 > 其他 > 详细

前端弹框编写

时间:2020-07-18 18:25:11      阅读:52      评论:0      收藏:0      [点我收藏+]
<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>


前端弹框编写

原文:https://www.cnblogs.com/jmc218/p/13336391.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!