实现原理:
首先,我们将弹出框中的内容放置在一个特殊的DIV层中,然后默认隐藏它(即初始不可
见,使用CSS即可实现)。当用户执行某个动作时——比如点击某个链接或者将鼠标光标移动到某个链接上——我们将之前设置好的隐藏层显示在所有页面元素的
最上层(将使用JS操作实现)。此外,我们还将在弹出DIV窗口中设置一个按钮来执行——当用户点击此按钮时关闭窗口的功能。
实现过程:
就如我上面提到的,我们首先需要创建一个特殊的DIV层,然后我们将弹出窗口的内容放在这个DIV层里面。在这里,我们将其ID命名为“popupcontent ”以区别于其他DIV层。
<div id="popupcontent">这是一个DIV弹窗效果!</div>
弹出窗口的CSS修饰代码:
接
下来,让我们给上面已创建好的这个DIV弹出层进行CSS美化。其中最重要的几个参数分别是:overflow(内容溢出),
visibility(可见性)
和position(定位方式)。同时我也给这个窗口效果添加了很多其他代码,但这些只是用于美化,使这个窗口更绚丽。所以,我们最后定义的CSS代码形
如:
复制代码 代码如下:
#popupcontent{
position: absolute
visibility: hidden
overflow: hidden
border:1px solid #CCC
background-color:#F9F9F9
border:1px solid #333
padding:5px
}
从上面CSS代码中的红色部分可以看出:这个DIV层初始默认状态是不可见的。
大家可以根据需要对以上代码进行美化,但请务必保留position,visibility,overflow三个属性。
JavaScript代码用于触发和显示弹出窗口:
这可能是本教程最重要最有趣的地方了。我们接下来会编写2个过程函数分别用于显示和隐藏上面那个DIV弹窗。当然,这两个函数之中会包含一些主体逻辑。
过程函数中需要顺序包含的逻辑:
计算JavaScript弹出窗口在屏幕上的显示位置(定位);
在弹出窗口中添加一个状态栏(或按钮),用于关闭打开状态下的窗口;
显示弹出窗口。
为了简单起见,本例中我们设置的显示位置是Top:200,Left:200。即以浏览器内容框的左上角为坐标,向下偏移200PX,向左偏移200PX。
弹出窗口的大小我们可以在显示函数的参数中进行设置,包括两个参数:窗口长度和窗口宽度。
如果你需要将本例中的代码进行二次开发,有个地方需要特别注意,那就是获取弹出窗口DIV层的DOM对象,我们可以通过下面这个getElementById函数来获取ID名为“Popcontent”的DOM对象。
复制代码 代码如下:
var popUp = document.getElementById("popupcontent")
在获取这个(弹出窗口)DOM对象之后,我们可以在JS代码中修改窗口的相对的位置和窗口大小。
复制代码 代码如下:
popUp.style.top = "200px"//窗口距离浏览器内容区最上方的偏移值
popUp.style.left = "200px"//窗口距离浏览器内容区最左边的偏移值
popUp.style.width = w + "px"//窗口的宽度
popUp.style.height = h + "px"//窗口的高度
接
下来,我们需要给窗口添加一个“关闭”按钮,用于在窗口开启状态下关闭这个窗口。要完美的实现这一功能,首先我们需要声明一个全局变量,用于存储弹出窗口
DIV中的内容。这是因为,如果你在一个页面中显示多个内容不同的弹出窗口,你不需要将按钮重复的复制到这些DIV层中,这样就简化了行为逻辑:
复制代码 代码如下:
if (baseText == null) baseText = popUp.innerHTML
popUp.innerHTML = baseText +
"<div id=\"statusbar\"><button onclick=\"hidePopup()\">Close window <button></div>"
最后一个需要注意的地方是这个“关闭”按钮的定位问题。这个很容易实现,设置一下这个按钮对象的向上的空白边即可(空白边的数值设置成稍小于整个弹出窗口的DIV高度即可)。
至此,所有的行为逻辑讲解完毕,最后的弹窗显示函数的完整代码如下:
复制代码 代码如下:
var baseText = null
function showPopup(w,h){
var popUp = document.getElementById("popupcontent")
popUp.style.top = "200px"
popUp.style.left = "200px"
popUp.style.width = w + "px"
popUp.style.height = h + "px"
if (baseText == null) baseText = popUp.innerHTML
popUp.innerHTML = baseText + "<div id=\"statusbar\"><button onclick=\"hidePopup()
\">Close window<button></div>"
var sbar = document.getElementById("statusbar")
sbar.style.marginTop = (parseInt(h)-40) + "px"
popUp.style.visibility = "visible"
}
隐藏弹出窗口:
隐藏弹出窗口的过程就相当简单了。只需要首先获取弹出窗口那个DIV的DOM对象,然后将其属性设置成“隐藏”即可。
复制代码 代码如下:
function hidePopup(){
var popUp = document.getElementById("popupcontent")
popUp.style.visibility = "hidden"
}
拓展HTML代码最终实现弹窗效果:
我们需要做的就是在某个链接或者按钮的对应事件上添加JS函数“showPopup() ”即可。
比如,需要在鼠标移动到某连接上时弹出窗口:
<a href="#" onmouseover="showPopup(300,200)" >Open popup</a>
需要在鼠标点击某个连接时弹出窗口:
<a href="#" onclick="showPopup(300,200)" >Open popup</a>
显示层:
css:
.showdiv
{
width: 100%
height: auto
position: absolute
left: 0
top: 0
z-index: 999
display: none
}
.count_div
{
width: 500px
height: 400px
margin-top: 120px
margin-left: auto
margin-right: auto
margin-bottom: 0
border: 1px solid #aaaaaa
background: #fff
}
.brg
{
width: 100%
background: #ededed
position: absolute
top: 0
left: 0
filter: alpha(opacity=60)
-moz-opacity: 0.6
opacity: 0.6
position: absolute
top: 0
left: 0
display: none
z-index: 998
}
js:
function close () {
$("#brg").css("display", "none")
$("#showdiv").css("display", "none")
}
function show() {
$("#brg").css("display", "none")
$("#div_show").css("display", "none")
}
$(document).bind('keydown', 'esc',function (evt){
//关闭层代码
close ()
return false})
html:
<!--遮罩层-->
<div class="brg" id="brg">
</div>
<!--显示层-->
<div class="showdiv" id="div_order">
<div class="count_div" id="div_order_count">
内容
</div>
</div>
在网上找一个“jquery.hotkeys.js”的js包,里面都是jquery整理好的热键,
引入jquery包。
$(document).bind('keydown', 'esc',function (evt){
//关闭层代码
return false})
手敲,未测试,应该不会有太大问题,根据自己内容修改
js如下:<script language="javascript">
//登陆弹出对话框,并使背景元素不可用
var div_width = 300
var div_height = 200
function showWindow(width,height){
location.href="#"
width = div_width
height = div_height
var windowstr= document.getElementById("popLayer").innerHTML
document.getElementById("infoDiv").innerHTML=windowstr
document.getElementById("infoDiv").style.left=((document.body.clientWidth-width)>0?(document.body.clientWidth-width):0)/2+"px"
document.getElementById("infoDiv").style.top=200+"px"
document.getElementById("infoDiv").style.zIndex=10001
document.getElementById("infoDiv").style.width=width
document.getElementById("infoDiv").style.height=height
document.getElementById("infoDiv").style.border="3px solid #0099ff"
document.getElementById("tranDiv").style.height=document.body.clientHeight+ "px"
document.getElementById("tranDiv").style.width=document.body.clientWidth+ "px"
document.getElementById("tranDiv").style.display=""
document.getElementById("tranDivBack").style.display=""
document.getElementById("tranDivBack").style.zIndex=10000
document.getElementById("infoDiv").style.display=""
}
function closeWindow(){
document.getElementById("tranDiv").style.display="none"
}
</script>
页面中:
<!--层遮罩部分-->
<div style="position:absolutedisplay:noneleft:0pxtop:0px" id="tranDiv">
<div style="position:absoluteleft:0pxtop:0pxwidth:100%height:100%background-color:#000000filter:alpha(Opacity=30)" id="tranDivBack"></div>
<div align='center'style='position:absoluteleft:0pxtop:0pxwidth:100%height:100%background-color:#e5edf5background-image:url(images/bestnetqywimg/tccbg.gif)' id='infoDiv'></div>
</div>
<!--层遮罩部分结束-->
<!--弹出层登录-->
<div id="popLayer" style="display:none"><form id="formdl" name="formdl" method="post" action=""><br /><font align="center" color="#0000ff" size="3"><b>---手机号码先登录---</b></font><br /><br />
<br/>
<input type="submit" name="Submit" class="bntccanniu" value="登录" /><input type="button" name="Submit1" class="bntccanniu" value="取消" onclick="closeWindow()"/>
</form>
</div>
<a href="javascript:">点击此处看看</a>