我的模态窗口定位有问题。我一直在尝试使用$(document).height()和$(window).height(),它没有给我我想要的东西。如果我在首页,这将给我正确的定位,但如果我向下滚动到我的页面上的某个地方。模态将位于首页,而不是我在浏览器中查看的位置。
有人请帮助我:)已经有很长一段时间了吗
谢谢
jquery:
//Get the screen height and width
var maskHeight = $(document).height();
var maskWidth = $(window).width();
//Set heigth and width to mask to fill up the whole screen
$('#mask').css({'width':maskWidth,'height':maskHeight});
//transition effect
$('#mask').fadeIn(1);
$('#mask').fadeTo("fast",0.8);
//Get the window height and width
var winH = $(window).height();
var winW = $(window).width();
//Set the popup window to center
id.css('top', (winH - id.outerHeight()) / 2);
id.css('left', ' (winW- id.outerWidth()) / 2);
//transition effect
id.show();
CSS
.imageBox .window {
left:0;
top:0;
text-align:center;
position:absolute;
display:none;
z-index:9999;
padding:20px;
}
我不想使用position:fixed;因为如果模态窗口的高度太大,我将无法滚动到窗口视图之外的内容
答案 0 :(得分:1)
您应该检查已滚动多少以将其包含在您的微积分中,并使用:
var pixelsScrolled = $(document).scrollTop();
希望这会有所帮助。干杯