简单的Jquery遮罩层代码实例_jquery
程序员文章站
2024-01-17 11:28:52
...
Css代码
#brg
{
width: 100%;
height: 100%;
background: #333;
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;
}
#showdiv
{
width: 100%;
height: auto;
position: absolute;
left: 300px;
top: 150px;
z-index: 330;
display: none;
}
#testdiv
{
width: 800px;
height: auto;
margin: 0 0;
border: 1px solid #4d4d4d;
background: #f2f2f2;
}
#close
{
width: 200px;
height: 27px;
line-height: 27px;
font-size: 14px;
font-weight: bold;
border: 1px solid #4d4d4d;
text-align: center;
cursor: pointer;
margin: 0 auto;
background: #333;
color: #fff;
}
关闭
$(document).ready(function() {
var bheight = document.body.clientHeight;
$("#btnAdd").click(function() {
$("#brg").css("display", "block");
$("#showdiv").css("display", "block");
$("#brg").css("height", document.body.scrollHeight);
$("#showdiv").css("top", document.body.scrollTop + 100);
});
$("#close").click(function() {
$("#brg").css("display", "none");
$("#showdiv").css("display", "none");
});
});
复制代码 代码如下:
#brg
{
width: 100%;
height: 100%;
background: #333;
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;
}
#showdiv
{
width: 100%;
height: auto;
position: absolute;
left: 300px;
top: 150px;
z-index: 330;
display: none;
}
#testdiv
{
width: 800px;
height: auto;
margin: 0 0;
border: 1px solid #4d4d4d;
background: #f2f2f2;
}
#close
{
width: 200px;
height: 27px;
line-height: 27px;
font-size: 14px;
font-weight: bold;
border: 1px solid #4d4d4d;
text-align: center;
cursor: pointer;
margin: 0 auto;
background: #333;
color: #fff;
}
Html 代码
复制代码 代码如下:
关闭
要显示的内容
Jquery 代码
复制代码 代码如下:
$(document).ready(function() {
var bheight = document.body.clientHeight;
$("#btnAdd").click(function() {
$("#brg").css("display", "block");
$("#showdiv").css("display", "block");
$("#brg").css("height", document.body.scrollHeight);
$("#showdiv").css("top", document.body.scrollTop + 100);
});
$("#close").click(function() {
$("#brg").css("display", "none");
$("#showdiv").css("display", "none");
});
});
推荐阅读
-
简单的Jquery遮罩层代码实例_jquery
-
jquery easyui中treegrid用法的简单实例
-
jQuery中的ajax-(json数据格式)代码实例讲解
-
jquery 获取dom固定元素 添加样式的简单实例_jquery
-
jquery:mouseenter和mouseleave事件的实例代码分享
-
jquery实现输入框动态增减的实例代码
-
jquery.Jwin.js 基于jquery的弹出层插件代码_jquery
-
jQuery对象和Javascript对象之间转换的实例代码_jquery
-
关于jQuery getScript跨域问题的实例代码
-
简单的代码实现jquery定时器_jquery