我有一个很好用的灯箱代码!您单击一个按钮,然后会出现黑屏和内容框的叠加。white_content
我想知道是否有一种方法可以根据用户向下滚动页面的距离使灯箱或下面的 CSS 出现在屏幕上。
基本上,我想让它white_content
出现在可视屏幕的中间。
http://s1309.beta.photobucket.com/user/mievan123/library/Light%20Box
第一张图片显示了以页面为中心的灯箱,这就是我想要的。我一直滚动到页面底部。
第二张图片显示了页面上几乎看不到的灯箱。如您所见,我向上滚动了一点。当我在那个位置时,红色轮廓是我希望灯箱移动到的位置。
屏幕录制是否有助于使这个问题更清楚?
下面提供了我的所有代码:
我的灯箱 CSS
.black_overlay{
display: none;
position: fixed;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
background-color: black;
z-index:1001;
-moz-opacity: 0.8;
opacity:.80;
filter: alpha(opacity=80);
}
.white_content {
display: none;
position: absolute;
top: 50%;
left: 25%;
width: 50%;
height: 50%;
padding: 16px;
border: 16px solid green;
background-color: white;
z-index:1002;
overflow: auto;
}
打开灯箱的脚本
<p align="right">
<a href="javascript:void(0)"
class="button"
onclick="document.getElementById('light').style.display='block';
document.getElementById('fade').style.display='block'"
>Contact Us</a>
</p>
实际的灯箱编码
<div id="light" class="white_content">
This is the lightbox content.
<a href="javascript:void(0)"
onclick = "document.getElementById('light').style.display='none';
document.getElementById('fade').style.display='none'"
>Close</a>
</div>
<div id="fade" class="black_overlay"></div>