CSS:
#mask {
position: absolute;
z-index: 9000;
background-color: #000;
display: none;
}
#boxes .window {
position: fixed;
width: 800px;
height: 600px;
}
#boxes #dialog {
background: #f2f2f2 url('App_Themes/prompt_panel_gradient.png') top left repeat-x;
width: 800px;
height: 600px;
}
HTML:
<div id="boxes">
<div id="dialog" class="window">
<b>Testing modal window</b> |
<a href="#" class="close">Close it</a>
</div>
<div id="mask">
</div>
</div>
Javascript:
<script type="text/javascript">
$(document).ready(function() {
$('a[name=modal]').click(function(e) {
//Cancel the link behavior
e.preventDefault();
//Get the A tag
var id = $(this).attr('href');
//Get the screen height and width
var maskHeight = $(document).height();
var maskWidth = $(window).width();
//Set height and width to mask to fill up the whole screen
$('#mask').css({ 'width': maskWidth, 'height': maskHeight });
//transition effect
$('#mask').fadeIn(500);
$('#mask').fadeTo("slow", 0.9);
//Get the window height and width
var winH = $(window).height();
var winW = $(window).width();
//Set the popup window to center
$(id).css('top', winH / 2 - $(id).height() / 2);
$(id).css('left', winW / 2 - $(id).width() / 2);
//transition effect
$(id).fadeIn(500);
});
//if close button is clicked
$('.window .close').click(function(e) {
//Cancel the link behavior
e.preventDefault();
$('#mask, .window').hide();
});
$('#mask').click(function() {
$(this).hide();
$('.window').hide();
});
});
</script>
一切正常,模态窗口以背景图像打开,链接工作正常,但大小不是 800x600,我也不能更改模态窗口的大小。我错过了什么?谢谢