本文實(shí)例講述了jQuery實(shí)現(xiàn)的浮動(dòng)層div瀏覽器居中顯示效果。分享給大家供大家參考,具體如下:
1.在頁(yè)面的head中引入jQuery
<script type="text/javascript" language="javascript" src="jquery-1.7.2.min.js"></script>
2.在頁(yè)面的head中加入浮動(dòng)層和遮罩層的樣式
<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.在頁(yè)面的底部加上浮動(dòng)的div
<div id="previewDiv"> <table id ="head"> <tr><td>短消息預(yù)覽</td></tr> </table> <table align="center"> <tr><td> <div class="zhnx_neirong"> <h3>您收到了來(lái)自武林網(wǎng)的回復(fù)</h3> <p class="duanluo"> 內(nèi)容:這是浮動(dòng)層居中的實(shí)例</span></p> </div> <div class="zhnx_huifu"><p><a href="javascript:open('//m.survivalescaperooms.com/');">查看武林網(wǎng)</a></p></div> </td></tr> </table> <table align="center"> <tr><td><div><input type="button" value=" 關(guān) 閉 " onclick="hide();"/></div></td></tr> </table></div>4.添加顯示和隱藏的js函數(shù)
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();}完整實(shí)例代碼如下:
<!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>短消息預(yù)覽</td></tr> </table> <table align="center"> <tr><td> <div class="zhnx_neirong"> <h3>您收到了來(lái)自武林網(wǎng)的回復(fù)</h3> <p class="duanluo"> 內(nèi)容:這是浮動(dòng)層居中的實(shí)例</span></p> </div> <div class="zhnx_huifu"><p><a href="javascript:open('//m.survivalescaperooms.com/');">查看武林網(wǎng)</a></p></div> </td></tr> </table> <table align="center"> <tr><td><div><input type="button" value=" 關(guān) 閉 " 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>運(yùn)行效果圖如下:

更多關(guān)于jQuery相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《jQuery窗口操作技巧總結(jié)》、《jQuery拖拽特效與技巧總結(jié)》、《jQuery常用插件及用法總結(jié)》、《jquery中Ajax用法總結(jié)》、《jQuery表格(table)操作技巧匯總》、《jQuery擴(kuò)展技巧總結(jié)》、《jQuery常見(jiàn)經(jīng)典特效匯總》、《jQuery動(dòng)畫與特效用法總結(jié)》及《jquery選擇器用法總結(jié)》
希望本文所述對(duì)大家jQuery程序設(shè)計(jì)有所幫助。
新聞熱點(diǎn)
疑難解答
圖片精選
網(wǎng)友關(guān)注