本文實例講述了jQuery實現的浮動層div瀏覽器居中顯示效果。 分享給大家供大家參考,具體如下:

1.在頁面的head中引入jQuery

<script type="text/javascript" language="javascript" src="jquery-1.7.2.min.js"></script>

2.在頁面的head中加入浮動層和遮罩層的樣式

<style>
#previewDiv{z-index: 9999;position:absolute;display:none;background:#fff;border-top:5px solid #999;border-bottom:7px solid #999;border-left:5px solid #999;border-right:7px solid #999;}
.mask {color:#C7EDCC;background-color:#999;position:absolute;top:0px;left:0px;width:100%;height:3000px;opacity: 0.6;filter: "Alpha(opacity=60)";filter: Alpha(Opacity=60);}
</style>

3.在頁面的底部加上浮動的div

<div id="previewDiv">
<table id ="head">
<tr><td>短消息預覽</td></tr>
</table>
<table align="center">
<tr><td>
<div class="zhnx_neirong">
<h3>您收到了來自腳本之家的回復</h3>
<p class="duanluo"> 內容:這是浮動層居中的實例</span></p>
</div>
<div class="zhnx_huifu"><p><a href="javascript:open('HTTP://www.jb51.net/');">查看腳本之家</a></p></div>
</td></tr>
</table>
<table align="center">
<tr><td><div><input type="button" value=" 關 閉 " onclick="hide();"/></div></td></tr>
</table>
</div>

4.添加顯示和隱藏的js函數

function show(){
添加並顯示遮罩層
$("<div id='mask'></div>").addClass("mask").click(function() {}) .appendTo("body").fadeIn(0);
document.getElementById("mask").style.display = "block";
var windowWidth = document.documentElement.clientWidth;
var windowHeight = document.documentElement.clientHeight;
var popupHeight = $("#previewDiv").height();
var popupWidth = $("#previewDiv").width();
$("#previewDiv").css({
"position": "absolute",
"top": (windowHeight-popupHeight)/2+$(document).scrollTop(),
"left": (windowWidth-popupWidth)/2
});
$("#previewDiv").show();
}
function hide(){
$("#mask").remove();
$("#previewDiv").hide();
}

完整實例代碼如下:

<! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"HTTP://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="HTTP://www.w3.org/1999/xhtml">
<head>
<meta HTTP-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test</title>
<script type="text/javascript" language="javascript" src="jquery-1.7.2.min.js"></script>
</head>
<body>
<style>
#previewDiv{z-index: 9999;position:absolute;display:none;background:#fff;border-top:5px solid #999;border-bottom:7px solid #999;border-left:5px solid #999;border-right:7px solid #999;}
.mask {color:#C7EDCC;background-color:#999;position:absolute;top:0px;left:0px;width:100%;height:3000px;opacity: 0.6;filter: "Alpha(opacity=60)";filter: Alpha(Opacity=60);}
</style>
<div id="previewDiv">
<table id ="head">
<tr><td>短消息預覽</td></tr>
</table>
<table align="center">
<tr><td>
<div class="zhnx_neirong">
<h3>您收到了來自腳本之家的回復</h3>
<p class="duanluo"> 內容:這是浮動層居中的實例</span></p>
</div>
<div class="zhnx_huifu"><p><a href="javascript:open('HTTP://www.jb51.net/');">查看腳本之家</a></p></div>
</td></tr>
</table>
<table align="center">
<tr><td><div><input type="button" value=" 關 閉 " onclick="hide();"/></div></td></tr>
</table>
</div>
<script type="text/javascript" language="javascript" >
function show(){
添加並顯示遮罩層
$("<div id='mask'></div>").addClass("mask").click(function() {}) .appendTo("body").fadeIn(0);
document.getElementById("mask").style.display = "block";
var windowWidth = document.documentElement.clientWidth;
var windowHeight = document.documentElement.clientHeight;
var popupHeight = $("#previewDiv").height();
var popupWidth = $("#previewDiv").width();
$("#previewDiv").css({
"position": "absolute",
"top": (windowHeight-popupHeight)/2+$(document).scrollTop(),
"left": (windowWidth-popupWidth)/2
});
$("#previewDiv").show();
}
function hide(){
$("#mask").remove();
$("#previewDiv").hide();
}
show();
</script>
</body>
</html>

arrow
arrow
    文章標籤
    jQuery
    全站熱搜

    科技幫 發表在 痞客邦 留言(0) 人氣()