我正在按照here找到的教程,我似乎无法让它显示出来。我正在使用启用了引导程序的网站,所以我不确定这是不是问题。我已经待了两个小时,似乎无法到达任何地方。我希望用户点击以显示弹出窗口的按钮如下所示:<a href="#openModal" class="btn btn-lg btn-primary">Contact Me</a>
弹出窗口的框架如下所示:
<div id="openModal" class="contactus">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>Title</h2>
<p>Content</p>
</div>
</div>
CSS文档如下:
.contactus {
position: fixed;
font-family: Arial, Helvetica, sans-serif;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0,0,0,0.8);
z-index: 99999;
opacity:0;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
pointer-events: none;
}
.contactus:target {
opacity:1;
pointer-events: auto;
}
.contactus > div {
width: 400px;
position: relative;
margin: 10% auto;
padding: 5px 20px 13px 20px;
border-radius: 10px;
background: #fff;
background: -moz-linear-gradient(#fff, #999);
background: -webkit-linear-gradient(#fff, #999);
background: -o-linear-gradient(#fff, #999);
}
.close {
background: #606061;
color: #FFFFFF;
line-height: 25px;
position: absolute;
right: -12px;
text-align: center;
top: -10px;
width: 24px;
text-decoration: none;
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
}
.close:hover { background: #00d9ff; }
我在我的浏览器上启用了JavaScript,如果你点击它,你不能在页面上向上滚动,除非你按下“Esc”所以我认为它正在上升,你只是看不到它。我认为这与z-index: 99999;
有关,但我不知道究竟是什么。
任何想法??