我正在使用一个脚本#mask
,它用一个元素使背景变灰,并将我的.memError
信息集中在屏幕上。问题是我的网站样式body
和html
元素body
- 是固定宽度并在html
元素内居中。当我使用下面的脚本时,#mask
和.memError
消息都相对于body
元素定位。我怎样才能将它们相对定位html
?
//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(1000);
$('#mask').fadeTo("normal", 0.9);
//Get the window height and width
var winH = $(window).height();
var winW = $(window).width();
//Set the popup window to center
$('.memError').css('top', winH / 2 - $('.memError').height() / 2);
$('.memError').css('left', winW / 2 - $('.memError').width() / 2);