我无法将动态大小完美居中,而动态大小会根据用户上传的图片尺寸而变化。该功能应该将div绝对地放在屏幕中心的所有其他内容上,但无论我使用的是什么图像,它都会关闭一小部分...见下文:
http://i.imgur.com/F9NNDAH.jpg
这是css:
.prompt_background {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: black;
-moz-opacity:.50;
filter:alpha(opacity=50);
opacity:.50;
display: none;
}
.prompt_box {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
background-color: white;
z-index: 1;
display: none;
position: fixed;
top: 50%;
left: 50%;
behavior: url(PIE.htc);
}
.prompt_content {
width: 100%;
margin: 10px;
}
我加载它的方式是:
function showprompt() {
$('.prompt_box')
.css("margin-left", -(($('.prompt_box').width())/2)+"px") //Horizontal center
.css("margin-top", -(($('.prompt_box').height())/2)+"px"); //Vertical center
$('.prompt_background')
.css('height', $(document).height())
.css("width", $(document).width()); //Background stretch
$('.prompt_background')
.css('filter', 'alpha(opacity=50)'); //Background opacity
$('.prompt_background, .prompt_box')
.fadeIn(500); //Animation
}
对于HTML,它只是三个空div,我通过ajax加载内容
<div class="prompt_background">
</div>
<div class="prompt_box">
<div class="prompt_content">
</div>
</div>