码迷,mamicode.com
首页 > 其他好文 > 详细

一个简单遮罩弹窗效果

时间:2017-09-23 18:50:55      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:ack   center   document   ndt   rgba   height   cursor   body   rip   

<script>
$(document).ready(function(){
//
$(".n_ordinfo").hide();
$("#ordsure").click(function(){

$(".n_ordinfo").show();

//获取鼠标滚动高度
var $scrolhei=$(document).scrollTop();

//点击后添加div元素并设置其为绝对定位
$("<div id=‘bgwrap‘></div>").appendTo("body");
$("#bgwrap").css({"width":$(window).width()+20,"height":$(window).height()+20,"background":"rgba(0,0,0,0.68)","position":"absolute","top":$scrolhei,"left":"0px"});

//body元素超出部分不可移动
$("body").css({"overflow":"hidden"});


//点击按钮删除事件,这里删除去父元素
$("<div id=‘btn‘>X</div>").appendTo("#bgwrap");
$("#btn").css({"width":"24px","height":"24px","text-align":"center","line-height":"30px","position":"absolute","top":"8.8em","left":"80.6%","z-index":"99999","font-size":"0.14em","cursor":"pointer"});

$("#btn").click(function(){

$(this).parent().remove();
$(".n_ordinfo").hide();
$("body").css({"overflow":"scroll"});
})

})
})
</script>

一个简单遮罩弹窗效果

标签:ack   center   document   ndt   rgba   height   cursor   body   rip   

原文地址:http://www.cnblogs.com/lvlina/p/7581675.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!