jquery遮罩层弹窗广告代码

发布时间:2019-12-31编辑:脚本学堂
分享一个jquery遮罩层实现的弹窗广告代码,jquery弹窗代码实例,有需要的朋友参考下。

1,html部分
 

复制代码 代码示例:
<div>点击这里</div>
 <div>效果增强版的</div>
 <div></div>
 <div>这里是正文内容</div>

2,css部分
 

复制代码 代码示例:
.bg{display:none;position:fixed;width:100%;height:100%;background:#000;z-index:2;top:0;left:0;opacity:0.7;}
.content{display:none;width:500px;height:300px;position:fixed;top:50%;margin-top:-150px;background:#fff;z-index:3;left:50%;margin-left:-250px;}

3,js弹窗代码
 

复制代码 代码示例:
$(function(){
$('.click').click(function(){
$('.bg').css({'display':'block'});
$('.content').css({'display':'block'});
});
$('.bg').click(function(){
//$('.bg').css({'display':'none'});
//$('.content').css({'display':'none'});
});
$('.click1').click(function(){
$('.bg').fadeIn(200);
$('.content').fadeIn(400);
});
$('.bg').click(function(){
$('.bg').fadeOut(200);
$('.content').fadeOut(200);
});
});